|
Scala Library Documentation
|
|
scala/actors/remote/Proxy.scala]
class
Proxy(node : Node, name : Symbol, kernel : NetKernel)
extends Actor| Values and Variables inherited from Actor | |
| trapExit |
| Method Summary | |
override def
|
!
(msg : Any) : Unit
Sends
msg to this actor (asynchronous). |
override def
|
!?
(msg : Any) : Any
Sends
msg to this actor and awaits reply
(synchronous). |
override def
|
act
: Unit
The behavior of an actor is specified by implementing this
abstract method. Note that the preferred way to create actors
is through the
actor method
defined in object Actor. |
| Methods inherited from Actor | |
| send, receive, receiveWithin, react, reactWithin, forward, !?, !!, !!, reply, ?, sender, receiver, scheduleActor, start, link, link, unlink, exit, exit |
| Methods inherited from AnyRef | |
| getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
| Methods inherited from Any | |
| ==, !=, isInstanceOf, asInstanceOf |
| Method Details |
override
def
act : Unit
actor method
defined in object Actor.msg to this actor (asynchronous).msg to this actor and awaits reply
(synchronous).msg - the message to be sent|
Scala Library Documentation
|
|