Apache.Arrow.Memory.ExportedAllocationOwner
namespace Apache.Arrow.Memory
{
internal sealed class ExportedAllocationOwner : IDisposable
{
public IntPtr Allocate(int size);
public IntPtr Acquire(IntPtr ptr, int offset, int length);
public IntPtr Reference(MemoryHandle handle);
public IntPtr (SharedMemoryHandle sharedHandle);
public void IncRef();
public void DecRef();
public void Dispose();
public ExportedAllocationOwner();
}
}