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

receiveBuf() public method

public receiveBuf ( long timeout ) : OtpInputStream
timeout long
return OtpInputStream
        public OtpInputStream receiveBuf(long timeout)
        {
            OtpMsg m = receiveMsg(timeout);
            if (m != null)
            {
                return m.getMsgBuf();
            }

            return null;
        }

Same methods

OtpMbox::receiveBuf ( ) : OtpInputStream