ecflow.Day

class ecflow.Day

Bases: instance

Defines a day dependency.

There can be multiple day dependencies. If a hybrid clock is defined on a suite, any node held by a day dependency will be set to complete at the beginning of the suite, without the task ever being dispatched otherwise the suite would never complete.

Constructor:

Day(string)
   string: 'sunday','monday',etc
Day(Days)
   Days day: Is an enumerator with represent the days of the week

Usage:

day1 = Day(Days.sunday)
t = Task('t1',
        Day('tuesday'))
Day.day((Day)arg1) Days :

Return the day as enumerator