Release property
Pointer<NativeFunction<Void Function(Pointer<OrtExternalMemoryHandle> handle)> >
Release
getter/setter pair
\brief Release callback for this handle. EP sets this to its release function.
ORT calls this when ReleaseExternalMemoryHandle is invoked. The EP's callback should cast the handle to its derived type and delete it.
Implementation
external ffi.Pointer<
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<OrtExternalMemoryHandle> handle)
>
>
Release;