Property | Type | Description | |
---|---|---|---|
tasks | List |
Method | Description | |
---|---|---|
AbstractSimpleScheduler ( ) : System |
Constructor.
|
|
AddTask ( IScheduledTask task ) : void |
Adds a task to the scheduler.
|
|
ClearTasks ( ) : void |
Clears all tasks from the scheduler.
|
|
Process ( ) : void |
Processes the scheduler. This should not be called in end user code unless the end user knows exactly what they're doing.
|
|
RemoveTask ( IScheduledTask task ) : System.Boolean |
Removes a task from the scheduler. Is a fail-safe function; will not throw an exception if the task was not there to begin with.
|
public AddTask ( IScheduledTask task ) : void | ||
task | IScheduledTask | The task to add to the scheduler. |
return | void |
public RemoveTask ( IScheduledTask task ) : System.Boolean | ||
task | IScheduledTask | The task to remove from the scheduler. |
return | System.Boolean |