次の方法で共有


ActorInformation クラス

  • java.lang.Object
    • Serializable
      • microsoft.servicefabric.actors.ActorInformation

public class ActorInformation

Actor Query メソッドの呼び出しによって返されるアクターに関する情報を表します。

コンストラクターの概要

コンストラクター 説明
ActorInformation(ActorId actorId, boolean isactive)

ActorInformation クラスの新しいインスタンスを初期化します。

メソッドの概要

修飾子と型 メソッドと説明
ActorId getActorId()

ACtor の ActorId を取得します。

boolean isActive()

アクターがアクティブかどうかを取得します。

コンストラクターの詳細

ActorInformation

public ActorInformation(ActorId actorId, boolean isactive)

ActorInformation クラスの新しいインスタンスを初期化します。

パラメーター:

actorId - actor の ActorId。
isactive - アクターがアクティブか非アクティブかを示す値。

メソッドの詳細

getActorId

public ActorId getActorId()

ACtor の ActorId を取得します。

戻り値:

isActive

public boolean isActive()

アクターがアクティブかどうかを取得します。

戻り値:

java.lang.Boolean アクターがアクティブかどうかを示します。

適用対象