[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Apply events as entering a window (new events).

Namespace: net.esper.eql.core
Assembly:   NEsper (in NEsper.dll)

Syntax

Visual Basic (Declaration)
Sub ApplyEnter ( _
	eventsPerStream As EventBean(), _
	optionalGroupKeyPerRow As MultiKey(Of Object) _
)
C#
void ApplyEnter (
	EventBean[] eventsPerStream,
	MultiKey<Object> optionalGroupKeyPerRow
)
Visual C++
void ApplyEnter (
	array<EventBean^>^ eventsPerStream, 
	MultiKey<Object^>^ optionalGroupKeyPerRow
)

Parameters

eventsPerStream
net.esper.events.EventBean[]
events for each stream entering window
optionalGroupKeyPerRow
net.esper.collection.MultiKey<(Of T>)
can be null if grouping without keys is desired, else the keys to use for grouping, each distinct key value results in a new row of aggregation state.