StreamEventOrder Enumeration
Specifies the event order in a query output stream.
Namespace: Microsoft.ComplexEventProcessing
Assembly: Microsoft.ComplexEventProcessing (in Microsoft.ComplexEventProcessing.dll)
Syntax
public enum StreamEventOrder
Members
Member name | Description | |
---|---|---|
ChainOrdered | In a ChainOrdered output stream each CTI releases all interval events with an end time before the CTI to the output.
Because Point and Edge (considering Start and End edges separately) events only have a single significant timestamp, this only has an effect on interval event output streams. Effectively, this value orders the output interval events according to their end times. |
|
FullyOrdered | In a FullyOrdered output stream each CTI releases interval events to the output only if all other events with an earlier start time have been released to the output already.
Because Point and Edge (considering Start and End edges separately) events only have a single significant timestamp, this only has an effect on interval event output streams. Effectively, this value orders the output interval events according to their end times. |