Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


ScheduleMode

Options for scheduling a managed job.
Read time 1 minuteLast updated 9 days ago

Definition

public enum ScheduleMode

Fields

Value

Description

ParallelSchedule a job to run on multiple worker threads if possible. Jobs that can't run concurrently run on one thread only.
RunRun a job immediately on calling thread.
SingleSchedule a job to run on a single worker thread.