|
Scala
1.2.0.1 |
|||
Field Summary | |
type Message
|
Method Summary | |
def receive[a](f: PartialFunction[Object,a]): a
Block until there is a message in the mailbox for which the processor f is defined.
|
|
def receiveWithin[a](msec: Long)(f: PartialFunction[Object,a]): a
Block until there is a message in the mailbox for which the processor f is defined or the timeout is over.
|
|
def send(msg: Object): Unit
First check whether a pending receiver is applicable to the sent message. |
Methods inherited from java/lang/Object-class |
clone, eq, equals, finalize, getClass, hashCode, notify, notifyAll, synchronized, toString, wait, wait, wait |
Methods inherited from scala/Any-class |
!=, ==, asInstanceOf, isInstanceOf, match |
Methods inherited from scala/concurrent/ListQueueCreator-class |
queueCreate |
Field Detail |
type Message = Object
Method Detail |
def send(msg: Object): Unit
def receive[a](f: PartialFunction[Object,a]): a
f
is defined.
def receiveWithin[a](msec: Long)(f: PartialFunction[Object,a]): a
f
is defined or the timeout is over.
|
Scala
1.2.0.1 |
|||