SessionOptionsSetCustomJoinThreadFn property

Pointer<NativeFunction<OrtStatusPtr Function(Pointer<OrtSessionOptions> options, OrtCustomJoinThreadFn ort_custom_join_thread_fn)>> SessionOptionsSetCustomJoinThreadFn
getter/setter pair

\brief Set custom thread join function

\paramin options Session options \paramin ort_custom_join_thread_fn Custom join thread function, must not be nullptr when ort_custom_create_thread_fn is set

\snippet{doc} snippets.dox OrtStatus Return Value

Implementation

external ffi.Pointer<
  ffi.NativeFunction<
    OrtStatusPtr Function(
      ffi.Pointer<OrtSessionOptions> options,
      OrtCustomJoinThreadFn ort_custom_join_thread_fn,
    )
  >
>
SessionOptionsSetCustomJoinThreadFn;