Module spring.data.keyvalue
Interface QueryEngineFactory
public interface QueryEngineFactory
Interface for
QueryEngineFactory implementations that provide a QueryEngine object as part of the
configuration.
The factory is used during configuration to supply the query engine to be used. When configured, a
QueryEngineFactory can be instantiated by accepting a SortAccessor in its constructor. Otherwise,
implementations are expected to declare a no-args constructor.
- Since:
- 3.3.1
- Author:
- Mark Paluch
-
Method Summary
Modifier and TypeMethodDescriptionQueryEngine<?,?, ?> create()Factory method for creating aQueryEngine.
-
Method Details
-
create
QueryEngine<?,?, create()?> Factory method for creating aQueryEngine.- Returns:
- the query engine.
-