DurableOrchestrationClientBase Interface

Definition

Caution

Use IDurableOrchestrationClient instead.

Formerly, the abstract base class for DurableOrchestrationClient. Now obsolete: use IDurableOrchestrationClient instead.

[System.Obsolete("Use IDurableOrchestrationClient instead.")]
public interface DurableOrchestrationClientBase : Microsoft.Azure.WebJobs.Extensions.DurableTask.IDurableOrchestrationClient
[<System.Obsolete("Use IDurableOrchestrationClient instead.")>]
type DurableOrchestrationClientBase = interface
    interface IDurableOrchestrationClient
Public Interface DurableOrchestrationClientBase
Implements IDurableOrchestrationClient
Attributes
Implements

Properties

TaskHubName

Gets the name of the task hub configured on this client instance.

(Inherited from IDurableOrchestrationClient)

Methods

CreateCheckStatusResponse(HttpRequest, String, Boolean)

Creates an HTTP response that is useful for checking the status of the specified instance.

(Inherited from IDurableOrchestrationClient)
CreateCheckStatusResponse(HttpRequestMessage, String, Boolean)

Creates an HTTP response that is useful for checking the status of the specified instance.

(Inherited from IDurableOrchestrationClient)
CreateHttpManagementPayload(String)

Creates a HttpManagementPayload object that contains status, terminate and send external event HTTP endpoints.

(Inherited from IDurableOrchestrationClient)
GetStatusAsync(Nullable<DateTime>, Nullable<DateTime>, IEnumerable<OrchestrationRuntimeStatus>, CancellationToken)
Obsolete.

Gets the status of all orchestration instances that match the specified conditions.

(Inherited from IDurableOrchestrationClient)
GetStatusAsync(OrchestrationStatusQueryCondition, CancellationToken)
Obsolete.

Gets the status of all orchestration instances with paging that match the specified conditions.

(Inherited from IDurableOrchestrationClient)
GetStatusAsync(String, Boolean, Boolean, Boolean)

Gets the status of the specified orchestration instance.

(Inherited from IDurableOrchestrationClient)
ListInstancesAsync(OrchestrationStatusQueryCondition, CancellationToken)

Gets the status of all orchestration instances with paging that match the specified conditions.

(Inherited from IDurableOrchestrationClient)
MakeCurrentAppPrimaryAsync()

Makes the current app the primary app, if it isn't already. Must be using the AppLease feature by setting UseAppLease to true in host.json.

(Inherited from IDurableOrchestrationClient)
PurgeInstanceHistoryAsync(DateTime, Nullable<DateTime>, IEnumerable<OrchestrationStatus>)

Purge the orchestration history for instances that match the conditions.

(Inherited from IDurableOrchestrationClient)
PurgeInstanceHistoryAsync(String)

Purge the history for a concrete instance.

(Inherited from IDurableOrchestrationClient)
RaiseEventAsync(String, String, Object)

Sends an event notification message to a waiting orchestration instance.

(Inherited from IDurableOrchestrationClient)
RaiseEventAsync(String, String, String, Object, String)

Sends an event notification message to a waiting orchestration instance.

(Inherited from IDurableOrchestrationClient)
RestartAsync(String, Boolean)

Restarts an existing orchestrator with the original input.

(Inherited from IDurableOrchestrationClient)
ResumeAsync(String, String)

Resumes a suspended orchestration instance.

(Inherited from IDurableOrchestrationClient)
RewindAsync(String, String)
Obsolete.

Rewinds the specified failed orchestration instance with a reason.

(Inherited from IDurableOrchestrationClient)
StartNewAsync(String, String)

Starts a new execution of the specified orchestrator function.

(Inherited from IDurableOrchestrationClient)
StartNewAsync<T>(String, String, T)

Starts a new instance of the specified orchestrator function.

(Inherited from IDurableOrchestrationClient)
StartNewAsync<T>(String, T)

Starts a new execution of the specified orchestrator function.

(Inherited from IDurableOrchestrationClient)
SuspendAsync(String, String)

Suspends a running orchestration instance.

(Inherited from IDurableOrchestrationClient)
TerminateAsync(String, String)

Terminates a running orchestration instance.

(Inherited from IDurableOrchestrationClient)
WaitForCompletionOrCreateCheckStatusResponseAsync(HttpRequest, String, Nullable<TimeSpan>, Nullable<TimeSpan>, Boolean)

Creates an HTTP response which either contains a payload of management URLs for a non-completed instance or contains the payload containing the output of the completed orchestration.

(Inherited from IDurableOrchestrationClient)
WaitForCompletionOrCreateCheckStatusResponseAsync(HttpRequestMessage, String, Nullable<TimeSpan>, Nullable<TimeSpan>, Boolean)

Creates an HTTP response which either contains a payload of management URLs for a non-completed instance or contains the payload containing the output of the completed orchestration.

(Inherited from IDurableOrchestrationClient)

Applies to