Scala Library
|
|
scala/actors/remote/Proxy.scala
]
class
Proxy(node : Node, name : Symbol, val
kernel : scala.actors.remote.NetKernel)
extends
AbstractActorMethod Summary | |
def
|
!
(msg : Any) : Unit
Sends
msg to this
OutputChannel (asynchronous). |
def
|
!! (msg : Any) : Future[Any] |
def
|
!! [A](msg : Any, f : PartialFunction[Any, A]) : Future[A] |
def
|
!? (msg : Any) : Any |
def
|
!? (msec : Long, msg : Any) : Option[Any] |
def
|
exit (from : AbstractActor, reason : AnyRef) : Unit |
def
|
forward
(msg : Any) : Unit
Forwards
msg to this
OutputChannel (asynchronous). |
def
|
linkTo (to : AbstractActor) : Unit |
def
|
receiver
: Actor
Returns the
Actor that is
receiving from this OutputChannel . |
def
|
send
(msg : Any, replyCh : OutputChannel[Any]) : Unit
Sends
msg to this
OutputChannel (asynchronous) supplying
explicit reply destination. |
override def
|
toString
: java.lang.String
Returns a string representation of the object.
|
def
|
unlinkFrom (from : AbstractActor) : Unit |
Methods inherited from AnyRef | |
getClass, hashCode, equals, clone, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Method Details |
msg
to this
OutputChannel
(asynchronous).
def
send(msg : Any, replyCh : OutputChannel[Any]) : Unit
msg
to this
OutputChannel
(asynchronous) supplying
explicit reply destination.msg -
the message to sendreplyTo -
the reply destinationmsg
to this
OutputChannel
(asynchronous).
def
receiver : Actor
Actor
that is
receiving from this OutputChannel
.
def
linkTo(to : AbstractActor) : Unit
def
unlinkFrom(from : AbstractActor) : Unit
def
exit(from : AbstractActor, reason : AnyRef) : Unit
override
def
toString : java.lang.String
The default representation is platform dependent.
Scala Library
|
|