scala.actors

OutputChannel

trait OutputChannel[-Msg] extends AnyRef

A common interface for all channels to which values can be sent.

Annotations
@deprecated
Deprecated

(Since version 2.11.0) Use the akka.actor package instead. For migration from the scala.actors package refer to the Actors Migration Guide.

Linear Supertypes
AnyRef, Any
Known Subclasses
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. OutputChannel
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def !(msg: Msg): Unit

    Sends msg to this OutputChannel (asynchronous).

    Sends msg to this OutputChannel (asynchronous).

    msg

    the message to send

  2. abstract def forward(msg: Msg): Unit

    Forwards msg to this OutputChannel (asynchronous).

    Forwards msg to this OutputChannel (asynchronous).

    msg

    the message to forward

  3. abstract def receiver: InternalActor

    Returns the Actor that is receiving from this OutputChannel.

  4. abstract def send(msg: Msg, replyTo: OutputChannel[Any]): Unit

    Sends msg to this OutputChannel (asynchronous) supplying explicit reply destination.

    Sends msg to this OutputChannel (asynchronous) supplying explicit reply destination.

    msg

    the message to send

    replyTo

    the reply destination