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.2
Author:
Philipp Haller

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.Object) : 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 != 'normal.


Def inherited from scala.actors.Actor
! , !!, !!, !?, !?, ?, act, exit, exit, exit, exitLinked, 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 this (t: java.lang.Thread)

Def Detail
def act : scala.Unit

override def exit (reason: java.lang.Object): 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 != 'normal.

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