Package akka.actor

Class ActorRefWithCell

  • All Implemented Interfaces:
    ScalaActorRef, java.io.Serializable, java.lang.Comparable<ActorRef>
    Direct Known Subclasses:
    LocalActorRef, RepointableActorRef

    public abstract class ActorRefWithCell
    extends InternalActorRef
    Common trait of all actor refs which actually have a Cell, most notably LocalActorRef and RepointableActorRef. The former specializes the return type of underlying so that follow-up calls can use invokevirtual instead of invokeinterface.
    See Also:
    Serialized Form
    • Constructor Detail

      • ActorRefWithCell

        public ActorRefWithCell()
    • Method Detail

      • children

        public abstract scala.collection.immutable.Iterable<ActorRef> children()
      • getSingleChild

        public abstract InternalActorRef getSingleChild​(java.lang.String name)
      • underlying

        public abstract Cell underlying()