|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object akka.actor.Inbox akka.actor.dsl.Inbox.Inbox
public static class Inbox.Inbox
Constructor Summary | |
---|---|
Inbox.Inbox(ActorSystem system)
|
Method Summary | ||
---|---|---|
void |
finalize()
Overridden finalizer which will try to stop the actor once this Inbox is no longer referenced. |
|
ActorRef |
getRef()
Obtain a reference to the internal actor, which can then for example be registered with the event stream or whatever else you may want to do with an ActorRef . |
|
java.lang.Object |
receive(scala.concurrent.duration.FiniteDuration timeout)
Receive a single message from the internal receiver actor. |
|
ActorRef |
receiver()
|
|
|
select(scala.concurrent.duration.FiniteDuration timeout,
scala.PartialFunction<java.lang.Object,T> predicate)
Receive a single message for which the given partial function is defined and return the transformed result, using the internal receiver actor. |
|
void |
send(ActorRef target,
java.lang.Object msg)
Have the internal actor act as the sender of the given message which will be sent to the given target. |
|
void |
watch(ActorRef target)
Make the inbox’s actor watch the target actor such that reception of the Terminated message can then be awaited. |
Methods inherited from class akka.actor.Inbox |
---|
create |
Methods inherited from class java.lang.Object |
---|
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Inbox.Inbox(ActorSystem system)
Method Detail |
---|
public ActorRef receiver()
public ActorRef getRef()
Inbox
ActorRef
.
getRef
in class Inbox
public void send(ActorRef target, java.lang.Object msg)
Inbox
send
in class Inbox
target
- (undocumented)msg
- (undocumented)public java.lang.Object receive(scala.concurrent.duration.FiniteDuration timeout)
receiver
actor. The supplied
timeout is used for cleanup purposes and its precision is subject to the
resolution of the system’s scheduler (usually 100ms, but configurable).
Warning: This method blocks the current thread until a message is received, thus it can introduce dead-locks (directly as well as indirectly by causing starvation of the thread pool). Do not use this method within an actor!
receive
in class Inbox
timeout
- (undocumented)
public <T> T select(scala.concurrent.duration.FiniteDuration timeout, scala.PartialFunction<java.lang.Object,T> predicate)
receiver
actor.
The supplied timeout is used for cleanup purposes and its precision is
subject to the resolution of the system’s scheduler (usually 100ms, but
configurable).
Warning: This method blocks the current thread until a message is received, thus it can introduce dead-locks (directly as well as indirectly by causing starvation of the thread pool). Do not use this method within an actor!
timeout
- (undocumented)predicate
- (undocumented)
public void watch(ActorRef target)
watch
in class Inbox
target
- (undocumented)public void finalize()
finalize
in class java.lang.Object
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |