Package org.apache.ignite.indexing
Class IndexingQueryEngineConfiguration
- java.lang.Object
- 
- org.apache.ignite.indexing.IndexingQueryEngineConfiguration
 
- 
- All Implemented Interfaces:
- QueryEngineConfiguration,- org.apache.ignite.internal.processors.query.QueryEngineConfigurationEx
 
 public class IndexingQueryEngineConfiguration extends Object implements org.apache.ignite.internal.processors.query.QueryEngineConfigurationEx Query engine configuration for indexing-backed query engine.
- 
- 
Field SummaryFields Modifier and Type Field Description static StringENGINE_NAMEQuery engine name.
 - 
Constructor SummaryConstructors Constructor Description IndexingQueryEngineConfiguration()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<? extends org.apache.ignite.internal.processors.query.QueryEngine>engineClass()Query engine class.StringengineName()Query engine name.booleanisDefault()Is this query engine should be used by default.IndexingQueryEngineConfigurationsetDefault(boolean isDflt)Sets whether this query engine should be used by default.
 
- 
- 
- 
Field Detail- 
ENGINE_NAMEpublic static final String ENGINE_NAME Query engine name.- See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
engineNamepublic String engineName() Query engine name.- Specified by:
- engineNamein interface- org.apache.ignite.internal.processors.query.QueryEngineConfigurationEx
 
 - 
engineClasspublic Class<? extends org.apache.ignite.internal.processors.query.QueryEngine> engineClass() Query engine class.- Specified by:
- engineClassin interface- org.apache.ignite.internal.processors.query.QueryEngineConfigurationEx
 
 - 
isDefaultpublic boolean isDefault() Is this query engine should be used by default.- Specified by:
- isDefaultin interface- QueryEngineConfiguration
- Returns:
- Trueif this query engine is default.
 
 - 
setDefaultpublic IndexingQueryEngineConfiguration setDefault(boolean isDflt) Sets whether this query engine should be used by default.There can be only one query engine configuration with the default flag. If there is no configuration with the default flag, the query engine provided by the ignite-indexing module will be used by default (if configured). If there is no configuration for the ignite-indexing module engine exists, the first engine from the query engines configuration will be used. - Specified by:
- setDefaultin interface- QueryEngineConfiguration
- Parameters:
- isDflt-- Trueif this query engine should be used by default.
- Returns:
- thisfor chaining.
 
 
- 
 
-