Chronos Plugins  5.2.0
This documentation covers the plugin interfaces definitions and an example implementation.
AxelSemrau.Chronos.Plugin.IGiveARuntimeHint Interface Reference

If you can calculate your runtime, you should implement this interface. More...

+ Inheritance diagram for AxelSemrau.Chronos.Plugin.IGiveARuntimeHint:
+ Collaboration diagram for AxelSemrau.Chronos.Plugin.IGiveARuntimeHint:

Properties

int? CalculatedRuntime [get]
 Get an idea of the expected runtime. More...
 

Additional Inherited Members

- Public Member Functions inherited from AxelSemrau.Chronos.Plugin.ITask
void PreValidate ()
 Called before the schedule construction is completed. More...
 
void PostValidate ()
 Called after the schedule construction is completed. More...
 
void Execute ()
 Do whatever you have to do with your parameters. More...
 
string GetTaskAction ()
 Description of the tasks's action (for hints/time table) More...
 

Detailed Description

If you can calculate your runtime, you should implement this interface.

This is only used in the pre-calculation validation phase.

Definition at line 490 of file TaskInterfaces.cs.

Property Documentation

◆ CalculatedRuntime

int? AxelSemrau.Chronos.Plugin.IGiveARuntimeHint.CalculatedRuntime
get

Get an idea of the expected runtime.

Returns
If you can calculate it, return the runtime in seconds. If you can't, return null. The value from the method editor will be used in this case.

Definition at line 499 of file TaskInterfaces.cs.

499 { get; }

The documentation for this interface was generated from the following file: