abstract class ActorRefResolver extends Extension

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.

Annotations
@DoNotInherit()
Source
ActorRefResolver.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ActorRefResolver
  2. Extension
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ActorRefResolver()

Abstract Value Members

  1. abstract def resolveActorRef[T](serializedActorRef: String): ActorRef[T]

    Deserialize an ActorRef in the #toSerializationFormat.

  2. 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.