sock.sendMore("FETCH");
sock.sendMore(ByteBuffer.allocate(8).putLong(last.start()).array());
sock.send(ByteBuffer.allocate(8).putLong(Integer.MAX_VALUE).array());
Msg status = sock.base().recv(0);
assertEquals(100, status.data()[0]);
Msg result = sock.base().recv(0);
assertEquals((int) (last.offset() - last.start()), result.size());
Iterator<Msg> it = new MsgIterator(result.buf(), false);