|
Chronos Plugins 5.11.0
This documentation covers the plugin interfaces definitions and an example implementation.
|
Allows to get information about other tasks within our task's job and about other jobs. More...
Properties | |
| ITaskInfo | CurrentTask [get] |
| Gets the current Jobs current Task. | |
| IEnumerable< ITaskInfo > | JobsTasks [get] |
| Enumerate the tasks in your task's job. | |
| Guid | PlanerID [get] |
| For use with the schedule state awareness interfaces. | |
| int | JobNo [get] |
| Gets the zero based job index. | |
| IEnumerable< IInspectJob > | Previous [get] |
| Lets you iterate over jobs further up the sample list, in reverse order. | |
| IEnumerable< IInspectJob > | Next [get] |
| Lets you iterate over jobs further down the sample list. | |
| IMethodInfo | MethodInfo [get] |
| Info about the method this job was created from. | |
| IEnumerable< ITaskInfo > | CompleteSchedule [get] |
| All tasks involved in the current schedule. | |
Allows to get information about other tasks within our task's job and about other jobs.
Do not implement this, it's just a parameter of INeedToInspectOtherTasks
Definition at line 369 of file TaskInterfaces.cs.
|
get |
All tasks involved in the current schedule.
This may include disabled tasks that are not listed in JobsTasks.
Definition at line 422 of file TaskInterfaces.cs.
|
get |
Gets the current Jobs current Task.
The current Task
Definition at line 378 of file TaskInterfaces.cs.
|
get |
Gets the zero based job index.
The zero based job index number
Definition at line 399 of file TaskInterfaces.cs.
|
get |
Enumerate the tasks in your task's job.
This includes only enabled tasks. If you need to access disabled tasks, please use CompleteSchedule
Definition at line 387 of file TaskInterfaces.cs.
|
get |
Info about the method this job was created from.
Definition at line 414 of file TaskInterfaces.cs.
|
get |
Lets you iterate over jobs further down the sample list.
Definition at line 409 of file TaskInterfaces.cs.
|
get |
For use with the schedule state awareness interfaces.
Definition at line 391 of file TaskInterfaces.cs.
|
get |
Lets you iterate over jobs further up the sample list, in reverse order.
Definition at line 405 of file TaskInterfaces.cs.