Package akka.actor.dsl
Interface Inbox
-
- All Known Implementing Classes:
ActorDSL$
public interface Inbox
Create a new actor which will internally queue up messages it gets so that they can be interrogated with theakka.actor.dsl.Inbox!.Inbox!.receive
andakka.actor.dsl.Inbox!.Inbox!.select
methods. It will be created as a system actor in the ActorSystem which is implicitly (or explicitly) supplied.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
Inbox.InboxExtension
static interface
Inbox.Query
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Inbox$Inbox
inbox(ActorSystem system)
Create a new actor which will internally queue up messages it gets so that they can be interrogated with theakka.actor.dsl.Inbox!.Inbox!.receive
andakka.actor.dsl.Inbox!.Inbox!.select
methods.ActorRef
senderFromInbox(Inbox$Inbox inbox)
-
-
-
Method Detail
-
inbox
Inbox$Inbox inbox(ActorSystem system)
Create a new actor which will internally queue up messages it gets so that they can be interrogated with theakka.actor.dsl.Inbox!.Inbox!.receive
andakka.actor.dsl.Inbox!.Inbox!.select
methods. It will be created as a system actor in the ActorSystem which is implicitly (or explicitly) supplied.- Parameters:
system
- (undocumented)- Returns:
- (undocumented)
-
senderFromInbox
ActorRef senderFromInbox(Inbox$Inbox inbox)
-
-