Chronos Plugins 5.9.0
This documentation covers the plugin interfaces definitions and an example implementation.
|
Implement this interface if your device consists of multiple parts which can be used in parallel - like the heads/body of a PAL3. In the part, please return BaseDeviceName + ":" + PartName for consistency reasons. More...
Properties | |
IReadOnlyCollection< IDevice > | Parts [get] |
Collection of all available parts. | |
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. | |
Additional Inherited Members | |
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. | |
Events inherited from AxelSemrau.Chronos.Plugin.IDevice | |
Action< ConnectionState > | ConnectionStateChanged |
Raise this event when your connection state has changed. | |
Implement this interface if your device consists of multiple parts which can be used in parallel - like the heads/body of a PAL3. In the part, please return BaseDeviceName + ":" + PartName for consistency reasons.
Please do not expect Chronos to subscribe to any events of a device part, or to add event handlers other than for IProvideStatusMessages - keep a reference to your base device and delegate this kind of actions to it. This is to make sure you can determine the list of parts at runtime without Chronos having to worry about the lifecycle of these parts.
Definition at line 284 of file DeviceInterfaces.cs.
|
get |
Collection of all available parts.
Implemented in MockPlugin.Device.Train.
Definition at line 289 of file DeviceInterfaces.cs.