Writes a byte array. @param buf The buffer to serialize the string to. @param b The byte array to serialize.
(final ChannelBuffer buf, final byte[] b)
| 996 | * @param b The byte array to serialize. |
| 997 | */ |
| 998 | static void writeByteArray(final ChannelBuffer buf, final byte[] b) { |
| 999 | writeVLong(buf, b.length); |
| 1000 | buf.writeBytes(b); |
| 1001 | } |
| 1002 | |
| 1003 | /** |
| 1004 | * Serializes a `null' reference. |
no test coverage detected