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

receiveMsg() public method

public receiveMsg ( long timeout ) : OtpMsg
timeout long
return OtpMsg
        public override OtpMsg receiveMsg(long timeout)
        {
            Object m = Queue.get(timeout);

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

Same methods

OtpActorMbox::receiveMsg ( ) : OtpMsg