次の方法で共有


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)
古い.

完成していないインスタンスの管理 URL のペイロードを格納するか、完成したオーケストレーションの出力を含むペイロードを含む HTTP 応答を作成します。

(継承元 IDurableOrchestrationClient)
WaitForCompletionOrCreateCheckStatusResponseAsync(HttpRequestMessage, String, Nullable<TimeSpan>, Nullable<TimeSpan>, Boolean)
古い.

完成していないインスタンスの管理 URL のペイロードを格納するか、完成したオーケストレーションの出力を含むペイロードを含む HTTP 応答を作成します。

(継承元 IDurableOrchestrationClient)

適用対象