次の方法で共有


ActorMethodContext クラス

  • java.lang.Object
    • microsoft.servicefabric.actors.runtime.ActorMethodContext

public class ActorMethodContext

ActorMethodContextには、アクター ランタイムによって呼び出され、 および onPostActorMethodAsync(ActorMethodContext actorMethodContext)に引数として渡されるメソッドに関するonPreActorMethodAsync(ActorMethodContext actorMethodContext)情報が含まれます。

メソッドの概要

修飾子と型 メソッドと説明
ActorCallType getCallType()

アクター ランタイムによる呼び出しの種類 (アクター インターフェイス メソッド、タイマー コールバックなど)。

String getMethodName()

アクター ランタイムによって呼び出されるメソッドの名前。

メソッドの詳細

getCallType

public ActorCallType getCallType()

アクター ランタイムによる呼び出しの種類 (アクター インターフェイス メソッド、タイマー コールバックなど)。

戻り値:

ActorCallType呼び出しの種類を表す 。

getMethodName

public String getMethodName()

アクター ランタイムによって呼び出されるメソッドの名前。

戻り値:

メソッドの名前を表す文字列。

適用対象