in scala.actors
class ActorProxy

class ActorProxy
extends java.lang.Object
with scala.actors.Actor
with scala.ScalaObject
The class ActorProxyprovides a dynamic actor proxy for normal Java threads.
Version:
0.9.0
Author:
Philipp Haller

Constructor Summary
def this (t: java.lang.Thread)

Val inherited from scala.actors.Actor
in , lastSenders, links
Var inherited from scala.actors.Actor
continuation , continue, detachActor, exitReason, kill, rc, resumeActor, suspendActor, suspendActorFor, timeoutPending, trapExit
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").


Def inherited from scala.actors.Actor
! , !?, act, defaultDetachActor, exit, exit, exitLinked, exitLinked, exitLinked, forward, freshReply, link, link, linkTo, popSender, pushSender, reply, resetActor, rpc, scheduleActor, sender, start, tick, unlink, unlinkFrom
Constructor Detail
def this (t: java.lang.Thread)

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").

Parameters:
reason - the exit reason of the interrupted thread.