Click or drag to resize

VirtualDataWindowFactory Interface

Factory for VirtualDataWindow.

Register an implementation of this interface with the engine before use: configuration.AddPlugInVirtualDataWindow("test", "vdw", typeof(SupportVirtualDWFactory).FullName);

Namespace:  com.espertech.esper.common.client.hook.vdw
Assembly:  NEsper.Common (in NEsper.Common.dll) Version: 8.0.0.0
Syntax
C#
public interface VirtualDataWindowFactory

The VirtualDataWindowFactory type exposes the following members.

Methods
  NameDescription
Public methodCreate
Invoked for each context partition (or once if not using contexts), return a virtual data window to handle the specific event type, named window or paramaters as provided in the context.

This method is invoked for each named window instance after the initialize method. If using context partitions, the method is invoked once per context partition per named window.

Public methodDestroy
Invoked upon undeployment of the virtual data window.
Public methodInitialize
Invoked once after instantiation of the factory, exactly once per named window.
Top
See Also