Click or drag to resize
Akka.NETInbox Class

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

Inheritance Hierarchy
System.Object
  Akka.FSharp.Inbox

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 memberasyncReceive<Message>
Awaits in async block fora next message sent to the inbox. Returns None if message is incompatible with expected response type.
Public methodStatic memberfilterReceive<Message>
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 memberreceive<Message>
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