|
Scala 2.4.0-final
|
class
ActorProxy
extends
java.lang.Object
with
scala.actors.Actor
with
scala.ScalaObject
ActorProxy
provides a dynamic actor proxy for normal
Java threads.Constructor Summary | |
def
this
(t: java.lang.Thread)
|
Val inherited from scala.actors.Actor | |
mailbox , waitingForNone |
Var inherited from scala.actors.Actor | |
continuation , exitReason, exiting, isDetached, isSuspended, isWaiting, kill, links, rc, received, sessions, shouldExit, timeoutPending, trapExit, waitingFor |
Def Summary | |
def
act
: scala.Unit
|
|
override
|
def
exit
(reason: java.lang.Object)
: scala.Nothing
Terminates execution of
For each linked actor
For each linked actor |
Def inherited from scala.actors.Actor | |
! , !!, !!, !?, !?, ?, act, exit, exit, exit, exitLinked, exitLinked, forward, freshReply, getReplyChannel, link, link, linkTo, react, reactWithin, receive, receiveWithin, reply, resumeActor, scheduleActor, send, sender, session, start, suspendActor, suspendActorFor, tick, unlink, unlinkFrom |
Constructor Detail |
Def Detail |
def
act
: scala.Unit
override
def
exit
(reason: java.lang.Object): scala.Nothing
Terminates execution of self
with the following
effect on linked actors:
For each linked actor a
with
trapExit
set to true
, send message
{'EXIT, self, reason}
to a
.
For each linked actor a
with
trapExit
set to false
(default),
call a.exit(reason)
if
reason != 'normal
.
reason -
the exit reason of the interrupted thread.