Scala Library Documentation
|
|
scala/actors/OutputChannel.scala
]
trait
OutputChannel[-Msg]
extends
AnyRefOutputChannel
trait provides a common interface
for all channels to which values can be sent.Method Summary | |
abstract def
|
!
(msg : Msg) : Unit
Sends
msg to this
OutputChannel (asynchronous). |
abstract def
|
forward
(msg : Msg) : Unit
Forwards
msg to this
OutputChannel (asynchronous). |
abstract def
|
receiver
: Actor
Returns the
Actor that is
receiving from this OutputChannel . |
Methods inherited from AnyRef | |
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Method Details |
msg
to this
OutputChannel
(asynchronous).msg
to this
OutputChannel
(asynchronous).abstract
def
receiver : Actor
Actor
that is
receiving from this OutputChannel
.
Scala Library Documentation
|
|