コード例 #1
0
ファイル: Utils.java プロジェクト: sggraham32/ECS-Kafka
 /** Read the given byte buffer into a Byte array */
 public static byte[] readBytes(ByteBuffer buffer) {
   return Utils.readBytes(buffer, 0, buffer.limit());
 }