scheduler
Library
Contains functions to interact with the raw task scheduler.
Types
SchedulerJobName
type SchedulerJobName = "RenderJob" | "WaitingHybridScriptsJob" | "ModelMeshJob" | "GcJob" | "HeartbeatTask" | "PhysicsJob" | "PathUpdateJob" | "NavigationJob" | "GenericDataModelJob" | "HttpRbxApiJob"Functions
connectprestep
Connects a function to run before a step of the specified job is run.
Callback Note
The callback you provide CANNOT yield or block the thread, or you will block the roblox main thread.
Errors
| Type | Description |
|---|---|
| Unknown Job | This job doesn't exist or is not supported. |
connectpoststep
Connects a function to run after a step of the specified job is run.
Callback Note
The callback you provide CANNOT yield or block the thread, or you will block the roblox main thread.
Errors
| Type | Description |
|---|---|
| Unknown Job | This job doesn't exist or is not supported. |