scala.actors

OutputChannel

trait OutputChannel[-Msg] extends AnyRef

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

Source
OutputChannel.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. OutputChannel
  2. AnyRef
  3. Any
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: Actor

    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