216217218219220221222
* This operation is blocking by default. * * @return Message instance. */ public Message recv() throws IOException { return new Message(recvBytes()); }
226227228229230231232
* * @param blocking set blocking or non blocking flag. * @return Message instance. */ public Message recv(final boolean blocking) throws IOException { return new Message(recvBytes(blocking)); }