你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

DurableOrchestrationClientBase 接口

定义

注意

Use IDurableOrchestrationClient instead.

以前是 DurableOrchestrationClient 的抽象基类。 现已过时:改用 IDurableOrchestrationClient

[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
属性
实现

属性

TaskHubName
已过时.

获取在此客户端实例上配置的任务中心的名称。

(继承自 IDurableOrchestrationClient)

方法

CreateCheckStatusResponse(HttpRequest, String, Boolean)
已过时.

创建一个 HTTP 响应,用于检查指定实例的状态。

(继承自 IDurableOrchestrationClient)
CreateCheckStatusResponse(HttpRequestMessage, String, Boolean)
已过时.

创建一个 HTTP 响应,用于检查指定实例的状态。

(继承自 IDurableOrchestrationClient)
CreateHttpManagementPayload(String)
已过时.

创建一个 HttpManagementPayload 对象,该对象包含状态、终止和发送外部事件 HTTP 终结点。

(继承自 IDurableOrchestrationClient)
GetStatusAsync(Nullable<DateTime>, Nullable<DateTime>, IEnumerable<OrchestrationRuntimeStatus>, CancellationToken)
已过时.

获取与指定条件匹配的所有业务流程实例的状态。

(继承自 IDurableOrchestrationClient)
GetStatusAsync(OrchestrationStatusQueryCondition, CancellationToken)
已过时.

获取具有与指定条件匹配的分页的所有业务流程实例的状态。

(继承自 IDurableOrchestrationClient)
GetStatusAsync(String, Boolean, Boolean, Boolean)
已过时.

获取指定业务流程实例的状态。

(继承自 IDurableOrchestrationClient)
ListInstancesAsync(OrchestrationStatusQueryCondition, CancellationToken)
已过时.

获取具有与指定条件匹配的分页的所有业务流程实例的状态。

(继承自 IDurableOrchestrationClient)
MakeCurrentAppPrimaryAsync()
已过时.

使当前应用成为主应用(如果尚未这样做)。 必须在 host.json 中将 UseAppLease 设置为 true 来使用 AppLease 功能。

(继承自 IDurableOrchestrationClient)
PurgeInstanceHistoryAsync(DateTime, Nullable<DateTime>, IEnumerable<OrchestrationStatus>)
已过时.

清除与条件匹配的实例的业务流程历史记录。

(继承自 IDurableOrchestrationClient)
PurgeInstanceHistoryAsync(String)
已过时.

清除具体实例的历史记录。

(继承自 IDurableOrchestrationClient)
RaiseEventAsync(String, String, Object)
已过时.

将事件通知消息发送到等待的业务流程实例。

(继承自 IDurableOrchestrationClient)
RaiseEventAsync(String, String, String, Object, String)
已过时.

将事件通知消息发送到等待的业务流程实例。

(继承自 IDurableOrchestrationClient)
RestartAsync(String, Boolean)
已过时.

使用原始输入重启现有业务流程协调程序。

(继承自 IDurableOrchestrationClient)
ResumeAsync(String, String)
已过时.

继续暂停的业务流程实例。

(继承自 IDurableOrchestrationClient)
RewindAsync(String, String)
已过时.

将指定失败的业务流程实例倒带一个原因。

(继承自 IDurableOrchestrationClient)
StartNewAsync(String, String)
已过时.

启动指定业务流程协调程序函数的新执行。

(继承自 IDurableOrchestrationClient)
StartNewAsync<T>(String, String, T)
已过时.

启动指定业务流程协调程序函数的新实例。

(继承自 IDurableOrchestrationClient)
StartNewAsync<T>(String, T)
已过时.

启动指定业务流程协调程序函数的新执行。

(继承自 IDurableOrchestrationClient)
SuspendAsync(String, String)
已过时.

暂停正在运行的业务流程实例。

(继承自 IDurableOrchestrationClient)
TerminateAsync(String, String)
已过时.

终止正在运行的业务流程实例。

(继承自 IDurableOrchestrationClient)
WaitForCompletionOrCreateCheckStatusResponseAsync(HttpRequest, String, Nullable<TimeSpan>, Nullable<TimeSpan>, Boolean)
已过时.

创建 HTTP 响应,该响应包含未完成实例的管理 URL 的有效负载,或包含包含已完成业务流程输出的有效负载。

(继承自 IDurableOrchestrationClient)
WaitForCompletionOrCreateCheckStatusResponseAsync(HttpRequestMessage, String, Nullable<TimeSpan>, Nullable<TimeSpan>, Boolean)
已过时.

创建 HTTP 响应,该响应包含未完成实例的管理 URL 的有效负载,或包含包含已完成业务流程输出的有效负载。

(继承自 IDurableOrchestrationClient)

适用于