Inboxable Interface |
Namespace: Akka.Actor
The Inboxable type exposes the following members.
Name | Description | |
---|---|---|
![]() | Receive |
Receive a next message from current Inboxable with default timeout. This call will return immediately,
if the internal actor previously received a message, or will block until it'll receive a message.
|
![]() | Receive(TimeSpan) |
Receive a next message from current Inboxable. This call will return immediately,
if the internal actor previously received a message, or will block for time specified by
timeout until it'll receive a message.
|
![]() | ReceiveAsync | |
![]() | ReceiveAsync(TimeSpan) | |
![]() | ReceiveWhere(PredicateObject) |
Receive a next message satisfying specified predicate under default timeout.
|
![]() | ReceiveWhere(PredicateObject, TimeSpan) |
Receive a next message satisfying specified predicate under provided timeout.
|
![]() | Send |
Makes an internal actor act as a proxy of given message,
which will be send to given actor. It means,
that all target's replies will be sent to current inbox instead.
|
![]() | Unwatch | (Inherited from ICanWatch.) |
![]() | Watch | (Inherited from ICanWatch.) |
Name | Description | |
---|---|---|
![]() | Receiver |
Get a reference to internal actor. It may be for example registered in event stream.
|