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). |
Methods inherited from AnyRef | |
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Scala Library Documentation
|
|