K2Informatics.Erlnet.OtpActorMbox.receiveMsg C# (CSharp) Method

receiveMsg() public method

public receiveMsg ( ) : OtpMsg
return OtpMsg
        public override OtpMsg receiveMsg()
        {
            Object m = Queue.tryGet();

            if (m == null)
            {
                return null;
            }
            else
            {
                return (OtpMsg)m;
            }
        }

Same methods

OtpActorMbox::receiveMsg ( long timeout ) : OtpMsg