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

Updates all the children with new data.Views may want to use the hasViews method on the Viewable interface to determineif there are any child views attached at all, and save the work of constructing the arrays and making the call to UpdateChildren() in case there aren't any children attached.

Namespace: net.esper.view
Assembly:   NEsper (in NEsper.dll)

Syntax

Visual Basic (Declaration)
Public Sub UpdateChildren ( _
	newData As EventBean(), _
	oldData As EventBean() _
)
C#
public void UpdateChildren (
	EventBean[] newData,
	EventBean[] oldData
)
Visual C++
public:
void UpdateChildren (
	array<EventBean^>^ newData, 
	array<EventBean^>^ oldData
)

Parameters

newData
net.esper.events.EventBean[]
is the array of new event data
oldData
net.esper.events.EventBean[]
is the array of old event data