UntypedActorOnReceive Method |
To be implemented by concrete UntypedActor, this defines the behavior of the UntypedActor.
This method is called for every message received by the actor.
Namespace: Akka.ActorAssembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntaxprotected abstract void OnReceive(
Object message
)
Protected MustOverride Sub OnReceive (
message As Object
)
protected:
virtual void OnReceive(
Object^ message
) abstract
abstract OnReceive :
message : Object -> unit
Parameters
- message
- Type: SystemObject
The message.
See Also