Reads an unsigned 32 bit value from the stream, as a long. @return An unsigned 32 bit value. @throws WireParseException The end of the stream was reached.
()
| 178 | * @throws WireParseException The end of the stream was reached. |
| 179 | */ |
| 180 | public long |
| 181 | readU32() throws WireParseException { |
| 182 | require(4); |
| 183 | return (byteBuffer.getInt() & 0xFFFFFFFFL); |
| 184 | } |
| 185 | |
| 186 | /** |
| 187 | * Reads a byte array of a specified length from the stream into an existing |
no test coverage detected