Scala Library Documentation
|
|
scala/concurrent/Actor.scala
]
abstract
class
Actor
extends
Thread with
AnyRefActor
...Method Summary | |
def
|
receive [a](f : PartialFunction[AnyRef, a]) : a |
def
|
receiveWithin [a](msec : Long)(f : PartialFunction[AnyRef, a]) : a |
def
|
self : Pid |
def
|
self_= (p : Pid) : Unit |
def
|
send (msg : AnyRef) : Unit |
Methods inherited from Thread | |
blockedOn, start, run, stop, stop, interrupt, isInterrupted, destroy, isAlive, suspend, resume, setPriority, getPriority, setName, getName, getThreadGroup, countStackFrames, join, join, join, setDaemon, isDaemon, checkAccess, toString, getContextClassLoader, setContextClassLoader, getStackTrace, getId, getState, getUncaughtExceptionHandler, setUncaughtExceptionHandler |
Methods inherited from AnyRef | |
getClass, hashCode, equals, clone, 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 : Pid
Scala Library Documentation
|
|