enumeration
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
CloseEnumerates the possible values returned by AtomicSafetyHandle methods that wait for all jobs accessing the native container associated with the handle to finish.
The members of this enum describe whether the job system had to wait for any jobs to finish.
The following methods use this enum as a return type:
AllJobsAlreadySynced | Indicates that all jobs were already complete at the time of the wait request. |
DidSyncRunningJobs | Indicates that the job system waited for at least one job to finish. |
HandleWasAlreadyDeallocated | Indicates that the job system didn't wait because the AtomicSafetyHandle was invalid, likely because the associated container had already been deallocated. |