CepStreamOperator.NextCti Property

 

When overridden in a derived class, gets the next point in time at which the operator will be asked to process a CTI event. If the value is null, or less than or equal to the sync time of the last processed event, then no CTI events will be passed to the ProcessEvent method.

Namespace:   Microsoft.ComplexEventProcessing.Extensibility
Assembly:  Microsoft.ComplexEventProcessing (in Microsoft.ComplexEventProcessing.dll)

Syntax

public virtual Nullable<DateTimeOffset> NextCti { get; }
public:
property Nullable<DateTimeOffset> NextCti {
    virtual Nullable<DateTimeOffset> get();
}
abstract NextCti : Nullable<DateTimeOffset> with get
override NextCti : Nullable<DateTimeOffset> with get
Public Overridable ReadOnly Property NextCti As Nullable(Of DateTimeOffset)

Property Value

Type: System.Nullable<DateTimeOffset>

The next point in time at which the operator will be asked to process a CTI event.

Remarks

Overriding this property allows the user-defined operator to produce output at a specific point in the future, or to indicate that its internal state is empty after some time interval has elapsed.

For more information, see User-Defined Stream Operators.

See Also

CepStreamOperator Class
Microsoft.ComplexEventProcessing.Extensibility Namespace

Return to top