com.xxdb.streaming.client.cep.EventSchemaEx Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dolphindb-javaapi Show documentation
Show all versions of dolphindb-javaapi Show documentation
The messaging and data conversion protocol between Java and DolphinDB server
package com.xxdb.streaming.client.cep;
import java.util.ArrayList;
import java.util.List;
public class EventSchemaEx {
private EventSchema schema;
private int timeIndex;
private List commonKeyIndex;
public EventSchemaEx() {
this.schema = new EventSchema();
this.commonKeyIndex = new ArrayList<>();
}
public EventSchema getSchema() {
return this.schema;
}
public void setSchema(EventSchema schema) {
this.schema = schema;
}
public int getTimeIndex() {
return this.timeIndex;
}
public void setTimeIndex(int timeIndex) {
this.timeIndex = timeIndex;
}
public List getCommonKeyIndex() {
return this.commonKeyIndex;
}
}