public void unpack(InputStream in) throws IOException, ISOException { synchronized (this) { packager.unpack(this, in); } }
/** * unpack a message * * @param b - raw message * @return consumed bytes * @exception ISOException */ public int unpack(byte[] b) throws ISOException { synchronized (this) { return packager.unpack(this, b); } }