Interface ILocalSearchPlanner
-
- All Known Implementing Classes:
LocalSearchPlanner
public interface ILocalSearchPlanner
- Since:
- 1.7
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<SearchPlanForBody>
plan(PQuery querySpec, java.util.Set<PParameter> boundParameters)
Creates executable plans for the provided query.
-
-
-
Method Detail
-
plan
java.util.Collection<SearchPlanForBody> plan(PQuery querySpec, java.util.Set<PParameter> boundParameters)
Creates executable plans for the provided query. It is required to call one of theinitializePlanner()
methods before calling this method.- Parameters:
querySpec
-boundParameters
- a set of bound parameters- Returns:
- a mapping between ISearchOperation list and a mapping, that holds a PVariable-Integer mapping for the list of ISearchOperations
- Throws:
ViatraQueryRuntimeException
-
-