Class VirtualDataWindowEventStartIndex
java.lang.Object
com.espertech.esper.common.client.hook.vdw.VirtualDataWindowEvent
com.espertech.esper.common.client.hook.vdw.VirtualDataWindowEventStartIndex
Event raised when an index gets created or started via the "create index" syntax.
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
Captures virtual data window indexed field information. -
Constructor Summary
ConstructorDescriptionVirtualDataWindowEventStartIndex
(String namedWindowName, String indexName, List<VirtualDataWindowEventStartIndex.VDWCreateIndexField> fields, boolean unique) Ctor. -
Method Summary
Modifier and TypeMethodDescriptionReturns a list of fields that are part of the index.Returns the index name.Returns the named window name.boolean
isUnique()
Returns indictor for unique index
-
Constructor Details
-
VirtualDataWindowEventStartIndex
public VirtualDataWindowEventStartIndex(String namedWindowName, String indexName, List<VirtualDataWindowEventStartIndex.VDWCreateIndexField> fields, boolean unique) Ctor.- Parameters:
namedWindowName
- named window nameindexName
- index namefields
- index fieldsunique
- for unique indexes
-
-
Method Details
-
getIndexName
Returns the index name.- Returns:
- index name
-
getFields
Returns a list of fields that are part of the index.- Returns:
- list of index fields
-
getNamedWindowName
Returns the named window name.- Returns:
- named window name
-
isUnique
public boolean isUnique()Returns indictor for unique index- Returns:
- unique index indicator
-