次の方法で共有


ServiceRemotingCancellationHelper クラス

  • java.lang.Object
    • microsoft.servicefabric.services.remoting.runtime.ServiceRemotingCancellationHelper

public class ServiceRemotingCancellationHelper

リモート メソッドディスパッチの取り消しサポートを提供します。

コンストラクターの概要

コンストラクター 説明
ServiceRemotingCancellationHelper(String traceId)

メソッドの概要

修飾子と型 メソッドと説明
CompletableFuture<byte[]> cancelRequestAsync(int interfaceId, int methodId, String callContext)

要求を非同期的に取り消します。

CompletableFuture<byte[]> dispatchRequest(int interfaceId, int methodId, String callContext, Function<CancellationToken, CompletableFuture<byte[]>> dispatchFunc)

ディスパッチ要求。

boolean isCancellationRequest(ServiceRemotingMessageHeaders messageHeaders)

取り消し要求の場合は true を返します。

コンストラクターの詳細

ServiceRemotingCancellationHelper

public ServiceRemotingCancellationHelper(String traceId)

パラメーター:

traceId

メソッドの詳細

cancelRequestAsync

public CompletableFuture cancelRequestAsync(int interfaceId, int methodId, String callContext)

要求を非同期的に取り消します。

パラメーター:

interfaceId - リモート インターフェイスのインターフェイス ID
methodId - リモート メソッドの methodId
callContext - Callcontext。

戻り値:

は、バイト配列を持つ Completable future を返します。

dispatchRequest

public CompletableFuture dispatchRequest(int interfaceId, int methodId, String callContext, Function> dispatchFunc)

ディスパッチ要求。

パラメーター:

interfaceId - リモート インターフェイスのインターフェイス ID
methodId - リモート メソッドの methodId
callContext - Callcontext。
dispatchFunc - ディスパッチ関数。

戻り値:

は、完了可能な将来を返します。

isCancellationRequest

public boolean isCancellationRequest(ServiceRemotingMessageHeaders messageHeaders)

取り消し要求の場合は true を返します。

パラメーター:

messageHeaders - メッセージ ヘッダーを要求する

戻り値:

取り消し要求の有無を示すブール値。

適用対象