|
Scala 2.2.0
|
class
ActorProxy
extends
java.lang.Object with
scala.actors.Actor with
scala.ScalaObjectConstructor Summary | |
def
this
(t: java.lang.Thread)
|
Def Summary | |
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") .
|
Constructor Detail |
def
this
(t: java.lang.Thread)
Def Detail |
def
act
: scala.Unit
override
def
exit
(reason: java.lang.String): scala.Unit
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")
.