K2Informatics.Erlnet.OtpMbox.receive C# (CSharp) Method

receive() public method

public receive ( ) : OtpErlangObject
return OtpErlangObject
        public OtpErlangObject receive()
        {
            try
            {
                return receiveMsg().getMsg();
            }
            catch (OtpErlangExit e)
            {
                throw e;
            }
            catch (OtpErlangDecodeException f)
            {
                throw f;
            }
        }

Same methods

OtpMbox::receive ( long timeout ) : OtpErlangObject