K2Informatics.Erlnet.OtpActorMbox.receiveMsg C# (CSharp) Méthode

receiveMsg() public méthode

public receiveMsg ( ) : OtpMsg
Résultat 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