MCPcopy Create free account
hub / github.com/chronoxor/FastBinaryEncoding / attach

Method attach

projects/Java/src/com/chronoxor/fbe/Model.java:23–23  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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); }

Calls 3

getDataMethod · 0.80
getSizeMethod · 0.45
getOffsetMethod · 0.45