K2Informatics.Erlnet.OtpMbox.receive C# (CSharp) 메소드

receive() 공개 메소드

public receive ( ) : OtpErlangObject
리턴 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