Click or drag to resize
Akka.NETInbox Class

[Missing <summary> documentation for "T:Akka.FSharp.Inbox"]

Inheritance Hierarchy
SystemObject
  Akka.FSharpInbox

Namespace:  Akka.FSharp
Assembly:  Akka.FSharp (in Akka.FSharp.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public static class Inbox

The Inbox type exposes the following members.

Methods
  NameDescription
Public methodStatic memberasyncReceiveMessage
Awaits in async block fora next message sent to the inbox. Returns None if message is incompatible with expected response type.
Public methodStatic memberfilterReceiveMessage
Receives a next message sent to the inbox, which satisfies provided predicate. This is a blocking operation. Returns None if timeout occurred or message is incompatible with expected response type.
Public methodStatic memberinbox
Creates an actor-like object, which could be interrogated from the outside. Usually it's used to spy on other actors lifecycle. Most of the inbox methods works in thread-blocking manner.
Public methodStatic memberreceiveMessage
Receives a next message sent to the inbox. This is a blocking operation. Returns None if timeout occurred or message is incompatible with expected response type.
Top
See Also