in scala.actors
class ActorProxy

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

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