DurableTaskHubResource Constructors
ClassConstructors1 member
Represents a Durable Task hub resource. A Task Hub groups durable orchestrations and activities. This resource extends the scheduler connection string with the TaskHub name so that clients can connect to the correct hub.
Constructor(string, DurableTaskSchedulerResource)Section titled Constructor(string, DurableTaskSchedulerResource) Represents a Durable Task hub resource. A Task Hub groups durable orchestrations and activities. This resource extends the scheduler connection string with the TaskHub name so that clients can connect to the correct hub.
public sealed class DurableTaskHubResource{ public DurableTaskHubResource( string name, DurableTaskSchedulerResource scheduler) { // ... }}Parameters
namestringThe logical name of the Task Hub (used as the TaskHub value).schedulerDurableTaskSchedulerResourceThe durable task scheduler resource whose connection string is the base for this hub.