ReceiveActorReceiveAny Method |
Registers a handler for incoming messages of any type.
Remarks
RemarksNote that handlers registered prior to this may have handled the message already.
In that case, this handler will not be invoked.
Namespace: Akka.ActorAssembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntaxprotected void ReceiveAny(
Action<Object> handler
)
Protected Sub ReceiveAny (
handler As Action(Of Object)
)
protected:
void ReceiveAny(
Action<Object^>^ handler
)
member ReceiveAny :
handler : Action<Object> -> unit
Parameters
- handler
- Type: SystemActionObject
The message handler that is invoked for all
See Also