OnRunStart property
Pointer<NativeFunction<OrtStatusPtr Function(Pointer<OrtEp> this_ptr, Pointer<OrtRunOptions> run_options)> >
OnRunStart
getter/setter pair
\brief Called by ORT to notify the EP of the start of a run.
\paramin this_ptr The OrtEp instance.
\paramin run_options The run options for this run.
\note Implementation of this function is optional.
\snippet{doc} snippets.dox OrtStatus Return Value
\since Version 1.23.
Implementation
external ffi.Pointer<
ffi.NativeFunction<
OrtStatusPtr Function(
ffi.Pointer<OrtEp> this_ptr,
ffi.Pointer<OrtRunOptions> run_options,
)
>
>
OnRunStart;