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

For use by views posting their result, process the event rows that are entered and removed (new and old events). Processes according to select-clauses, group-by clauses and having-clauses and returns new events and old events as specified.

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

Syntax

Visual Basic (Declaration)
Public Function ProcessViewResult ( _
	newData As EventBean(), _
	oldData As EventBean() _
) As Pair(Of EventBean(), EventBean())
C#
public Pair<EventBean[], EventBean[]> ProcessViewResult (
	EventBean[] newData,
	EventBean[] oldData
)
Visual C++
public:
virtual Pair<array<EventBean^>^, array<EventBean^>^>^ ProcessViewResult (
	array<EventBean^>^ newData, 
	array<EventBean^>^ oldData
) sealed

Parameters

newData
net.esper.events.EventBean[]
new events posted by view
oldData
net.esper.events.EventBean[]
old events posted by view

Return Value

pair of new events and old events