Click or drag to resize
Inboxable Methods

The Inboxable type exposes the following members.

Methods
  NameDescription
Public methodReceive
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.
Public methodReceive(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.
Public methodReceiveAsync
Public methodReceiveAsync(TimeSpan)
Public methodReceiveWhere(PredicateObject)
Receive a next message satisfying specified predicate under default timeout.
Public methodReceiveWhere(PredicateObject, TimeSpan)
Receive a next message satisfying specified predicate under provided timeout.
Public methodSend
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.
Public methodUnwatch (Inherited from ICanWatch.)
Public methodWatch (Inherited from ICanWatch.)
Top
See Also