Interface ActorStateUpdate
-
public interface ActorStateUpdate- Author:
- Joost van de Wijgerd
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Class<? extends ElasticActor>getActorClass()ActorRefgetActorRef()CreationContextgetCreationContext()ActorLifecycleStepgetLifecycleStep()ClassgetMessageClass()ByteBuffergetSerializedState()TraceContextgetTraceContext()StringgetVersion()
-
-
-
Method Detail
-
getVersion
String getVersion()
-
getLifecycleStep
@Nullable ActorLifecycleStep getLifecycleStep()
-
getActorClass
Class<? extends ElasticActor> getActorClass()
-
getActorRef
ActorRef getActorRef()
-
getSerializedState
@Nullable ByteBuffer getSerializedState()
-
getTraceContext
@Nullable TraceContext getTraceContext()
-
getCreationContext
@Nullable CreationContext getCreationContext()
-
-