Table of Contents

Field finishTask

Namespace
Box3D.Native
Assembly
Box3D.NET.Native.dll

finishTask

The callback that waits for a task to finish. It must block until the task has completed.

public delegate* unmanaged[Cdecl]<void*, void*, void> finishTask

Field Value

delegate* unmanaged[Cdecl]<void*, void*, void>

Remarks

Signature: void (void* userTask, void* userContext). The world step holds its stack across every fork and join, so do not call b3World_Step from inside a job that cannot park its thread.