abstract class ActorRefResolver extends Extension
Ordering
- Alphabetic
- By Inheritance
Inherited
- ActorRefResolver
- Extension
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new ActorRefResolver()
Abstract Value Members
- abstract def resolveActorRef[T](serializedActorRef: String): ActorRef[T]
Deserialize an
ActorRef
in the ActorRefResolver#toSerializationFormat. - abstract def toSerializationFormat[T](ref: ActorRef[T]): String
Generate full String representation including the uid for the actor cell instance as URI fragment, replacing the Address in the RootActor Path with the local one unless this path’s address includes host and port information.
Generate full String representation including the uid for the actor cell instance as URI fragment, replacing the Address in the RootActor Path with the local one unless this path’s address includes host and port information. This representation should be used as serialized representation.
Serialization and deserialization of
ActorRef
.This class is not intended for user extension other than for test purposes (e.g. stub implementation). More methods may be added in the future and that may break such implementations.