Scala Library Documentation
|
|
scala/concurrent/Process.scala
]
object
Process
extends
AnyRefMethod Summary | |
def
|
exit (p : Process, reason : AnyRef) : Unit |
def
|
receive [a](f : PartialFunction[AnyRef, a]) : a |
def
|
receiveWithin [a](msec : Long)(f : PartialFunction[AnyRef, a]) : a |
def
|
self : Process |
def
|
send (p : Process, msg : AnyRef) : Unit |
def
|
spawn (body : => Unit) : Process |
def
|
spawn_link (body : => Unit) : Process |
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 |
def
receive[a](f : PartialFunction[AnyRef, a]) : a
def
receiveWithin[a](msec : Long)(f : PartialFunction[AnyRef, a]) : a
def
self : Process
Scala Library Documentation
|
|