|
Scala 2.3.1
|
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 | |
in , lastSenders, links |
Var inherited from scala.actors.Actor | |
childCnt , continuation, detachActor, exitReason, isDetached, isWaiting, kill, name, rc, resumeActor, suspendActor, suspendActorFor, timeoutPending, trapExit |
Def Summary | |
def
act
: scala.Unit
|
|
override
|
def
exit
(reason: java.lang.String)
: scala.Unit
Terminates execution of
For each linked actor
For each linked actor |
Def inherited from scala.actors.Actor | |
! , !?, act, defaultDetachActor, exit, exit, exitLinked, exitLinked, exitLinked, forward, freshReply, link, link, linkTo, nextChildName, popSender, pushSender, reply, resetActor, rpc, scheduleActor, sender, setName, start, tick, unlink, unlinkFrom |
Constructor Detail |
Def Detail |
def
act
: scala.Unit
override
def
exit
(reason: java.lang.String): scala.Unit
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.equals("normal")
.
reason -
the exit reason of the interrupted thread.