|
LuciadCPillar C# 2025.0.11
|
Interface for a class that can schedule tasks. More...
Public Member Functions | |
| void | Schedule (Luciad.Concurrent.ITask task) |
Implement this method to execute the given ITask with the desired context. | |
Interface for a class that can schedule tasks.
Tasks must implement the ITask interface. This allows a task consumer to run tasks on a specific thread if needed.
| void Luciad.Concurrent.ITaskScheduler.Schedule | ( | Luciad.Concurrent.ITask | task | ) |
Implement this method to execute the given ITask with the desired context.
| task | the task to execute, cannot be null. |
Implemented in Luciad.Input.TaskSchedulerAdapter.