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

A helper class for View implementations that provides generic implementation for some of the methods. Methods that contain the actual logic of the view are not implemented in this class. A common implementation normally does not need to override any of the methods implemented here, their implementation is generic and should suffice.

The class provides a convenience method for updateing it's children data UpdateChildren(Object[], Object[]). This method should be called from within the View.update(Object[], Object[]) methods in the subclasses.

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

Syntax

Visual Basic (Declaration)
Public MustInherit Class ViewSupport _
	Implements View, Viewable, EventCollection, IEnumerable(Of EventBean), IEnumerable
C#
public abstract class ViewSupport : View, Viewable, EventCollection, IEnumerable<EventBean>, IEnumerable
Visual C++
public ref class ViewSupport abstract : View, Viewable, EventCollection, IEnumerable<EventBean^>, IEnumerable

Inheritance Hierarchy