Chronos Plugins 5.9.0
This documentation covers the plugin interfaces definitions and an example implementation.
|
This tasks uses the config helper to access some information about the instrument configuration and just dumps it to the runlog. More...
Public Member Functions | |
void | PreValidate () |
Called before the schedule construction is completed. | |
void | PostValidate () |
Called after the schedule construction is completed. | |
void | Execute () |
Do whatever you have to do with your parameters. | |
string | GetTaskAction () |
Description of the tasks's action (for hints/time table) | |
Public Member Functions inherited from AxelSemrau.Chronos.Plugin.ITask |
Events | |
Action< string > | WriteToRunlog |
Events inherited from AxelSemrau.Chronos.Plugin.IHaveRunlogOutput | |
Action< string > | WriteToRunlog |
Use this event to send output to the Run Control / Runlog page and, if applicable, to the runlog file. | |
This tasks uses the config helper to access some information about the instrument configuration and just dumps it to the runlog.
Definition at line 11 of file MockConfigUsingTask.cs.
void MockPlugin.Tasks.DumpConfigInfo.Execute | ( | ) |
Do whatever you have to do with your parameters.
Implements AxelSemrau.Chronos.Plugin.ITask.
Definition at line 25 of file MockConfigUsingTask.cs.
References AxelSemrau.Chronos.Plugin.Helpers.Config, and MockPlugin.Tasks.DumpConfigInfo.WriteToRunlog.
string MockPlugin.Tasks.DumpConfigInfo.GetTaskAction | ( | ) |
Description of the tasks's action (for hints/time table)
Implements AxelSemrau.Chronos.Plugin.ITask.
void MockPlugin.Tasks.DumpConfigInfo.PostValidate | ( | ) |
Called after the schedule construction is completed.
Implements AxelSemrau.Chronos.Plugin.ITask.
Definition at line 20 of file MockConfigUsingTask.cs.
void MockPlugin.Tasks.DumpConfigInfo.PreValidate | ( | ) |
Called before the schedule construction is completed.
Implements AxelSemrau.Chronos.Plugin.ITask.
Definition at line 15 of file MockConfigUsingTask.cs.
Action<string> MockPlugin.Tasks.DumpConfigInfo.WriteToRunlog |
Definition at line 47 of file MockConfigUsingTask.cs.
Referenced by MockPlugin.Tasks.DumpConfigInfo.Execute().