()
| 21 | |
| 22 | // Attach memory buffer methods |
| 23 | public void attach() { _buffer.attach(); } |
| 24 | public void attach(long capacity) { _buffer.attach(capacity); } |
| 25 | public void attach(byte[] buffer) { _buffer.attach(buffer); } |
| 26 | public void attach(byte[] buffer, long offset) { _buffer.attach(buffer, offset); } |