public virtual Buf readAllBuf() { try { long size = FanInt.Chunk.longValue(); Buf buf = Buf.make(size); while (readBuf(buf, size) != null); buf.flip(); return buf; } finally { try { close(); } catch (System.Exception e) { Err.dumpStack(e); } } }