Class FlushStatement
- java.lang.Object
-
- org.apache.iotdb.db.mpp.plan.statement.StatementNode
-
- org.apache.iotdb.db.mpp.plan.statement.Statement
-
- org.apache.iotdb.db.mpp.plan.statement.sys.FlushStatement
-
- All Implemented Interfaces:
IConfigStatement
public class FlushStatement extends Statement implements IConfigStatement
-
-
Field Summary
-
Fields inherited from class org.apache.iotdb.db.mpp.plan.statement.Statement
isDebug, statementType
-
-
Constructor Summary
Constructors Constructor Description FlushStatement(StatementType flushType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R,C>
Raccept(StatementVisitor<R,C> visitor, C context)Accessible forStatementVisitor, useStatementVisitor.process(StatementNode, Object)instead.java.util.List<org.apache.iotdb.commons.path.PartialPath>getPaths()QueryTypegetQueryType()Determine whether the operation to be performed is read or writejava.util.List<org.apache.iotdb.commons.path.PartialPath>getStorageGroups()booleanisOnCluster()java.lang.BooleanisSeq()voidsetOnCluster(boolean onCluster)voidsetSeq(java.lang.Boolean seq)voidsetStorageGroups(java.util.List<org.apache.iotdb.commons.path.PartialPath> storageGroups)
-
-
-
Constructor Detail
-
FlushStatement
public FlushStatement(StatementType flushType)
-
-
Method Detail
-
getStorageGroups
public java.util.List<org.apache.iotdb.commons.path.PartialPath> getStorageGroups()
-
setStorageGroups
public void setStorageGroups(java.util.List<org.apache.iotdb.commons.path.PartialPath> storageGroups)
-
isSeq
public java.lang.Boolean isSeq()
-
setSeq
public void setSeq(java.lang.Boolean seq)
-
isOnCluster
public boolean isOnCluster()
-
setOnCluster
public void setOnCluster(boolean onCluster)
-
getQueryType
public QueryType getQueryType()
Description copied from interface:IConfigStatementDetermine whether the operation to be performed is read or write- Specified by:
getQueryTypein interfaceIConfigStatement- Returns:
- QueryType
-
getPaths
public java.util.List<org.apache.iotdb.commons.path.PartialPath> getPaths()
-
accept
public <R,C> R accept(StatementVisitor<R,C> visitor, C context)
Description copied from class:StatementNodeAccessible forStatementVisitor, useStatementVisitor.process(StatementNode, Object)instead.- Overrides:
acceptin classStatementNode
-
-