RestoreContext クラス

  • java.lang.Object
    • microsoft.servicefabric.data.RestoreContext

public class RestoreContext

RestoreContext には、 restoreAsync(RestoreDescription restoreDescription) バックアップからレプリカの状態を復元するために使用できる が含まれています。

コンストラクターの概要

コンストラクター 説明
RestoreContext(StateProviderReplica stateProviderReplica)

RestoreContext 構造体の新しいインスタンスを初期化します。

メソッドの概要

修飾子と型 メソッドと説明
CompletableFuture<?> restoreAsync(RestoreDescription restoreDescription)

で説明されているバックアップを RestoreDescription復元します。

CompletableFuture<?> restoreAsync(RestoreDescription restoreDescription, Duration timeout, CancellationToken cancellationToken)

で説明されているバックアップを RestoreDescription復元します。

コンストラクターの詳細

RestoreContext

public RestoreContext(StateProviderReplica stateProviderReplica)

RestoreContext 構造体の新しいインスタンスを初期化します。

パラメーター:

stateProviderReplica - StateProviderReplica信頼できる状態プロバイダー レプリカを表す 。

メソッドの詳細

restoreAsync

public CompletableFuture restoreAsync(RestoreDescription restoreDescription)

で説明されているバックアップを RestoreDescription復元します。

パラメーター:

restoreDescription - 復元要求の説明。

戻り値:

非同期復元操作を表すタスク。

restoreAsync

public CompletableFuture restoreAsync(RestoreDescription restoreDescription, Duration timeout, CancellationToken cancellationToken)

で説明されているバックアップを RestoreDescription復元します。

パラメーター:

restoreDescription - 復元要求の説明。
timeout - この操作のタイムアウト。
cancellationToken - キャンセル要求を監視するためのトークン。

戻り値:

非同期復元操作を表すタスク。

適用対象