akka.actor.dsl
Class Inbox.Inbox

java.lang.Object
  extended by akka.actor.Inbox
      extended by akka.actor.dsl.Inbox.Inbox
Enclosing interface:
Inbox

public static class Inbox.Inbox
extends 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()
           
<T> T
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

Inbox.Inbox

public Inbox.Inbox(ActorSystem system)
Method Detail

receiver

public ActorRef receiver()

getRef

public ActorRef getRef()
Description copied from class: Inbox
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.

Specified by:
getRef in class Inbox

send

public void send(ActorRef target,
                 java.lang.Object msg)
Description copied from class: Inbox
Have the internal actor act as the sender of the given message which will be sent to the given target. This means that should the target actor reply then those replies will be received by this Inbox.

Specified by:
send in class Inbox

receive

public java.lang.Object receive(scala.concurrent.duration.FiniteDuration timeout)
Receive a single message from the internal 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!

Specified by:
receive in class Inbox

select

public <T> T 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. 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!


watch

public void watch(ActorRef target)
Make the inbox’s actor watch the target actor such that reception of the Terminated message can then be awaited.

Specified by:
watch in class Inbox

finalize

public void finalize()
Overridden finalizer which will try to stop the actor once this Inbox is no longer referenced.

Overrides:
finalize in class java.lang.Object