scala.actors

trait AbstractActor

[source: scala/actors/AbstractActor.scala]

trait AbstractActor
extends OutputChannel[Any] with AnyRef
The AbstractActor trait.
Version
0.9.18
Author
Philipp Haller
Direct Known Subclasses:
Actor, Proxy

Method Summary
abstract def !! (msg : Any) : Future[Any]
abstract def !! [A](msg : Any, f : PartialFunction[Any, A]) : Future[A]
abstract def !? (msec : Long, msg : Any) : Option[Any]
abstract def !? (msg : Any) : Any
Methods inherited from AnyRef
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized
Methods inherited from Any
==, !=, isInstanceOf, asInstanceOf
Methods inherited from OutputChannel
! (abstract), send (abstract), forward (abstract), receiver (abstract)
Method Details
abstract def !?(msg : Any) : Any

abstract def !?(msec : Long, msg : Any) : Option[Any]

abstract def !!(msg : Any) : Future[Any]

abstract def !![A](msg : Any, f : PartialFunction[Any, A]) : Future[A]