class documentation

class EventEvaluationMode(ACMEIntEnum):

View In Hierarchy

Time Window Interpretation. This determines how events received in a time window are to be interpreted.

Constant ALL_EVENTS_MISSING All some events missing for a PERIODICWINDOW (only).
Constant ALL_EVENTS_PRESENT All events present for a PERIODICWINDOW or SLIDINGWINDOW window. This is the default.
Constant ALL_OR_SOME_EVENTS_MISSING All or some events missing for a PERIODICWINDOW (only).
Constant ALL_OR_SOME_EVENTS_PRESENT All or some events present for a PERIODICWINDOW or SLIDINGWINDOW window.
Constant SOME_EVENTS_MISSING Some events present for a PERIODICWINDOW or SLIDINGWINDOW window.

Inherited from ACMEIntEnum:

Class Method has Check whether the enum type has an entry with either the given int value or string name.
Class Method to Return an enum value by its name.
Method __int__ Get the integer value of an enum.
Method __repr__ Stringify an enum.
Method __str__ Stringify an enum.
ALL_EVENTS_MISSING: int =

All some events missing for a PERIODICWINDOW (only).

Value
4
ALL_EVENTS_PRESENT: int =

All events present for a PERIODICWINDOW or SLIDINGWINDOW window. This is the default.

Value
1
ALL_OR_SOME_EVENTS_MISSING: int =

All or some events missing for a PERIODICWINDOW (only).

Value
3
ALL_OR_SOME_EVENTS_PRESENT: int =

All or some events present for a PERIODICWINDOW or SLIDINGWINDOW window.

Value
2
SOME_EVENTS_MISSING: int =

Some events present for a PERIODICWINDOW or SLIDINGWINDOW window.

Value
5