scala.actors

migration

package migration

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. migration
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. class DeathPactException extends Exception

    This message is thrown by default when an Actor does not handle termination.

  2. case class Terminated(actor: ActorRef)(reason: AnyRef) extends Product with Serializable

    Message that is sent to a watching actor when the watched actor terminates.

  3. case class Timeout(duration: Duration) extends Product with Serializable

  4. trait ActWithStash extends InternalActor

    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Scala Actors are being removed from the standard library. Please refer to the migration guide.

Value Members

  1. object ActWithStash extends Combinators with Serializable

  2. object ActorDSL

  3. object Timeout extends Serializable

  4. implicit def actorSender: ActorRef

  5. object pattern

  6. def registerActorRef(name: Symbol, a: ActorRef): Unit

    This method is used for registering an instance of ActWithStash as a remote actor.

    This method is used for registering an instance of ActWithStash as a remote actor.

    Example:

    val myActor = ActorDSL.actor(new ActWithStash {
      override def preStart() = {
        alive(2013)
        registerActorRef('myActorAkka, self)
      }
    
      def receive = {
        ...
      }
    })
  7. def selectActorRef(node: Node, sym: Symbol): ActorRef