akka.actor

ScalaActorRef

Related Doc: package actor

trait ScalaActorRef extends AnyRef

This trait represents the Scala Actor API There are implicit conversions in ../actor/Implicits.scala from ActorRef -> ScalaActorRef and back

Self Type
ScalaActorRef with ActorRef
Source
ActorRef.scala
Linear Supertypes
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ScalaActorRef
  2. AnyRef
  3. Any
Implicitly
  1. by scala2ActorRef
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def !(message: Any)(implicit sender: ActorRef = Actor.noSender): Unit

    Sends a one-way asynchronous message.

    Sends a one-way asynchronous message. E.g. fire-and-forget semantics.

    If invoked from within an actor then the actor reference is implicitly passed on as the implicit 'sender' argument.

    This actor 'sender' reference is then available in the receiving actor in the 'sender()' member variable, if invoked from within an Actor. If not then no sender is available.

      actor ! message
    

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from ScalaActorRef to any2stringadd[ScalaActorRef] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ScalaActorRef, B)

    Implicit information
    This member is added by an implicit conversion from ScalaActorRef to ArrowAssoc[ScalaActorRef] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def compareTo(other: ActorRef): Int

    Comparison takes path and the unique id of the actor cell into account.

    Comparison takes path and the unique id of the actor cell into account.

    Implicit information
    This member is added by an implicit conversion from ScalaActorRef to ActorRef performed by method scala2ActorRef in akka.actor.
    Definition Classes
    ActorRef → Comparable
  9. def ensuring(cond: (ScalaActorRef) ⇒ Boolean, msg: ⇒ Any): ScalaActorRef

    Implicit information
    This member is added by an implicit conversion from ScalaActorRef to Ensuring[ScalaActorRef] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: (ScalaActorRef) ⇒ Boolean): ScalaActorRef

    Implicit information
    This member is added by an implicit conversion from ScalaActorRef to Ensuring[ScalaActorRef] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean, msg: ⇒ Any): ScalaActorRef

    Implicit information
    This member is added by an implicit conversion from ScalaActorRef to Ensuring[ScalaActorRef] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean): ScalaActorRef

    Implicit information
    This member is added by an implicit conversion from ScalaActorRef to Ensuring[ScalaActorRef] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  15. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from ScalaActorRef to StringFormat[ScalaActorRef] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  17. def forward(message: Any)(implicit context: ActorContext): Unit

    Forwards the message and passes the original sender actor as the sender.

    Forwards the message and passes the original sender actor as the sender.

    Works, no matter whether originally sent with tell/'!' or ask/'?'.

    Implicit information
    This member is added by an implicit conversion from ScalaActorRef to ActorRef performed by method scala2ActorRef in akka.actor.
    Definition Classes
    ActorRef
  18. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  19. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  20. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  21. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  24. def path: ActorPath

    Returns the path for this actor (from this actor up to the root actor).

    Returns the path for this actor (from this actor up to the root actor).

    Implicit information
    This member is added by an implicit conversion from ScalaActorRef to ActorRef performed by method scala2ActorRef in akka.actor.
    Definition Classes
    ActorRef
  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  26. final def tell(msg: Any, sender: ActorRef): Unit

    Sends the specified message to the sender, i.e.

    Sends the specified message to the sender, i.e. fire-and-forget semantics, including the sender reference if possible.

    Pass akka.actor.ActorRef$.noSender or null as sender if there is nobody to reply to

    Implicit information
    This member is added by an implicit conversion from ScalaActorRef to ActorRef performed by method scala2ActorRef in akka.actor.
    Definition Classes
    ActorRef
  27. def toString(): String

    Definition Classes
    AnyRef → Any
  28. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. def [B](y: B): (ScalaActorRef, B)

    Implicit information
    This member is added by an implicit conversion from ScalaActorRef to ArrowAssoc[ScalaActorRef] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. final def equals(that: Any): Boolean

    Equals takes path and the unique id of the actor cell into account.

    Equals takes path and the unique id of the actor cell into account.

    Implicit information
    This member is added by an implicit conversion from ScalaActorRef to ActorRef performed by method scala2ActorRef in akka.actor.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (scalaActorRef: ActorRef).equals(that)
    Definition Classes
    ActorRef → AnyRef → Any
  2. final def hashCode(): Int

    Implicit information
    This member is added by an implicit conversion from ScalaActorRef to ActorRef performed by method scala2ActorRef in akka.actor.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (scalaActorRef: ActorRef).hashCode()
    Definition Classes
    ActorRef → AnyRef → Any
  3. def toString(): String

    Implicit information
    This member is added by an implicit conversion from ScalaActorRef to ActorRef performed by method scala2ActorRef in akka.actor.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (scalaActorRef: ActorRef).toString()
    Definition Classes
    ActorRef → AnyRef → Any

Deprecated Value Members

  1. def isTerminated: Boolean

    Is the actor shut down? The contract is that if this method returns true, then it will never be false again.

    Is the actor shut down? The contract is that if this method returns true, then it will never be false again. But you cannot rely on that it is alive if it returns false, since this by nature is a racy method.

    Implicit information
    This member is added by an implicit conversion from ScalaActorRef to ActorRef performed by method scala2ActorRef in akka.actor.
    Definition Classes
    ActorRef
    Annotations
    @deprecated
    Deprecated

    (Since version 2.2) Use context.watch(actor) and receive Terminated(actor)

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion scala2ActorRef from ScalaActorRef to ActorRef

Inherited by implicit conversion any2stringadd from ScalaActorRef to any2stringadd[ScalaActorRef]

Inherited by implicit conversion StringFormat from ScalaActorRef to StringFormat[ScalaActorRef]

Inherited by implicit conversion Ensuring from ScalaActorRef to Ensuring[ScalaActorRef]

Inherited by implicit conversion ArrowAssoc from ScalaActorRef to ArrowAssoc[ScalaActorRef]

Ungrouped