Akka.Actor.UntypedActor.OnReceive C# (CSharp) Method

OnReceive() protected abstract 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.
protected abstract OnReceive ( object message ) : void
message object The message.
return void
        protected abstract void OnReceive(object message);