Click or drag to resize
ReceiveActorReceiveAny Method
Registers a handler for incoming messages of any type.
Remarks
This method may only be called when constructing the actor or from Become(Action, Boolean).
Remarks
Note that handlers registered prior to this may have handled the message already. In that case, this handler will not be invoked.

Namespace: Akka.Actor
Assembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntax
protected void ReceiveAny(
	Action<Object> handler
)

Parameters

handler
Type: SystemActionObject
The message handler that is invoked for all
See Also