Chronos Plugins 5.9.0
This documentation covers the plugin interfaces definitions and an example implementation.
|
Implement this if your device needs to know when a specific job of the running scheduler has finished. More...
Public Member Functions | |
void | JobFinished (int jobNo) |
Will be called as soon as a job is finished. | |
Public Member Functions inherited from AxelSemrau.Chronos.Plugin.IDevice | |
void | Connect () |
You may have connected to the device before this, but make sure you are connected after this. | |
void | Disconnect () |
You may disconnect now. | |
Additional Inherited Members | |
Properties inherited from AxelSemrau.Chronos.Plugin.IDevice | |
string | DisplayedTypeName [get] |
Text which is displayed in the instruments settings "Autosampler Type" column and in many other places. | |
string | DeviceTypeDescription [get] |
Text which is displayed to make clear which kind of device a named sampler is. | |
string | Name [get, set] |
User-selected name for the device instance. | |
Events inherited from AxelSemrau.Chronos.Plugin.IDevice | |
Action< ConnectionState > | ConnectionStateChanged |
Raise this event when your connection state has changed. | |
Implement this if your device needs to know when a specific job of the running scheduler has finished.
Can be useful for maintenance counters.
Definition at line 479 of file DeviceInterfaces.cs.
void AxelSemrau.Chronos.Plugin.IJobAwareDevice.JobFinished | ( | int | jobNo | ) |
Will be called as soon as a job is finished.
jobNo | 0 based job index. |