OnSessionRunEnd property

Pointer<NativeFunction<OrtStatusPtr Function(Pointer<OrtSyncStreamImpl> this_ptr)>> OnSessionRunEnd
getter/setter pair

\brief Notify the stream that a session run has ended.

This is called by ORT to notify the stream that a session run has ended, allowing the stream to perform any necessary cleanup or finalization.

\paramin this_ptr Pointer to the OrtSyncStreamImpl instance.

\since Version 1.23.

Implementation

external ffi.Pointer<
  ffi.NativeFunction<
    OrtStatusPtr Function(ffi.Pointer<OrtSyncStreamImpl> this_ptr)
  >
>
OnSessionRunEnd;