ConcurrentBuffer.fromAddress constructor

ConcurrentBuffer.fromAddress(
  1. int ptr
)

Implementation

ConcurrentBuffer.fromAddress(int ptr) {
  cBuf = Pointer<Void>.fromAddress(ptr);
  _length = bufferGetSize(cBuf);
}