Interface ActorRefImpl<T>

    • Method Detail

      • compareTo

        int compareTo​(ActorRef<?> other)
        Comparison takes path and the unique id of the actor cell into account.
        Specified by:
        compareTo in interface java.lang.Comparable<T>
        Parameters:
        other - (undocumented)
        Returns:
        (undocumented)
      • equals

        boolean equals​(java.lang.Object that)
        Equals takes path and the unique id of the actor cell into account.
        Overrides:
        equals in class java.lang.Object
        Parameters:
        that - (undocumented)
        Returns:
        (undocumented)
      • hashCode

        int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • isLocal

        boolean isLocal()
      • narrow

        <U extends TActorRef<U> narrow()
        Description copied from interface: ActorRef
        Narrow the type of this ActorRef, which is always a safe operation.
        Specified by:
        narrow in interface ActorRef<T>
        Returns:
        (undocumented)
      • toString

        java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • unsafeUpcast

        <U> ActorRef<U> unsafeUpcast()
        Description copied from interface: ActorRef
        Unsafe utility method for widening the type accepted by this ActorRef; provided to avoid having to use asInstanceOf on the full reference type, which would unfortunately also work on non-ActorRefs. Use it with caution,it may cause a ClassCastException when you send a message to the widened {@link ActorRef[U}].
        Specified by:
        unsafeUpcast in interface ActorRef<T>
        Returns:
        (undocumented)