|
|
Scala 2.3.3
|
class
ActorProxy
extends java.lang.Object
with scala.actors.Actor
with scala.ScalaObject
ActorProxyprovides 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.String)
: scala.Nothing
Terminates execution of
For each linked actor
For each linked actor |
| Def inherited from scala.actors.Actor | |
| ! , !?, !?, ?, act, exit, exit, exit, 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.String): 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.equals("normal").
reason - the exit reason of the interrupted thread.