Scala Library Documentation
|
|
scala/actors/ActorProxy.scala
]
class
ActorProxy(t : Thread)
extends
ActorActorProxy
provides a dynamic actor proxy for normal
Java threads.Values and Variables inherited from Actor | |
waitingForNone, waitingFor, isSuspended, sessions, continuation, timeoutPending, isDetached, isWaiting, kill, links, trapExit, exitReason, exiting, shouldExit |
Method Summary | |
def
|
act
: Unit
The behavior of an actor is specified by implementing this
abstract method. Note that the preferred way to create actors
is through the
actor method
defined in object Actor . |
override def
|
exit
: Nothing
Terminates with exit reason
'normal . |
Methods inherited from Actor | |
receive, receiveWithin, react, reactWithin, !, forward, !?, !?, !!, !!, reply, getReplyChannel, freshReply, ?, sender, session, scheduleActor, tick, suspendActor, suspendActorFor, resumeActor, start, link, link, linkTo, unlink, unlinkFrom, exit, exitLinked, exitLinked, exit |
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
act : Unit
actor
method
defined in object Actor
.override
def
exit : Nothing
'normal
.
Scala Library Documentation
|
|