kreuzwerker / DKT.flows-engine

Apache License 2.0
0 stars 0 forks source link

Refactor Step scheduling #106

Closed johipsum closed 6 years ago

johipsum commented 6 years ago

We need to save the step-scheduling-configuration separately and not as a part of configParams. configParams should only hold information about the step payload. Scheduling-configuration should be part of scheduling

{
  ...,
  configParams: [{ ... }, { ... }],
  scheduling: {
    startDatetime: <ISODateString>,
    interval: <Number>,
    intervalType: <MINUTES || HOURS || DAYS>
  }
}

Besides that we need to enhance the flow object with the triggerType parameter. triggerType can be


Tasks:

johipsum commented 6 years ago

related to https://github.com/kreuzwerker/DKT.flows/issues/60