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

Receive() protected final method

protected final Receive ( object message ) : bool
message object
return bool
        protected sealed override bool Receive(object message)
        {
            OnReceive(message);
            return true;
        }