![]() |
LuciadCPillar C# 2024.1.04
|
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. More... | |
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 . |