UVStream
ByteBufferAllocatorBase allocator;
public ByteBufferAllocatorBase ByteBufferAllocator
{
get
{
return allocator ?? Loop.ByteBufferAllocator;
}
set
{
allocator = value;
}
}
public void Resume()
{
CheckDisposed();
int r = uv_read_start(NativeHandle, ByteBufferAllocator.AllocCallback, read_cb);
Ensure.Success(r);
}