Click or drag to resize
Akka.NETInboxReceive Method (TimeSpan)
Receive a single message from Receiver actor. Provided timeout is used for cleanup purposes. NOTE: timeout resolution depends on system's scheduler.

Namespace:  Akka.Actor
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public Object Receive(
	TimeSpan timeout
)

Parameters

timeout
Type: SystemTimeSpan
TBD

Return Value

Type: Object
TBD

Implements

IInboxableReceive(TimeSpan)
Exceptions
ExceptionCondition
TimeoutException This exception is thrown if the inbox received a StatusFailure response message or it didn't receive a response message by the given timeout .
Remarks
Don't use this method within actors, since it block current thread until a message is received.
See Also