scala.actors

class Reaction

[source: scala/actors/Reaction.scala]

class Reaction(a : Actor, f : PartialFunction[Any, Unit], msg : Any)
extends scala.actors.ActorTask

The abstract class Reaction associates an instance of an Actor with a java.lang.Runnable.

Deprecated
("this class is going to be removed in a future release")
Author
Philipp Haller
Additional Constructor Summary
def this (a : Actor) : Reaction
Values and Variables inherited from scala.actors.ReactorTask
scala.actors.ReactorTask.reactor, scala.actors.ReactorTask.fun
Methods inherited from scala.actors.ActorTask
scala.actors.ActorTask.beforeExecuting, scala.actors.ActorTask.afterExecuting
Methods inherited from scala.actors.ReactorTask
scala.actors.ReactorTask.run, scala.actors.ReactorTask.call
Methods inherited from AnyRef
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized
Methods inherited from Any
==, !=, isInstanceOf, asInstanceOf
Additional Constructor Details
def this(a : Actor) : Reaction