Interface AsMergeStrategy
-
- All Known Implementing Classes:
DefaultAsMergeStrategy
public interface AsMergeStrategyStrategy for merging search profile results.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default AsSearchProfileResultmerge(AsSearchProfileContext context, java.util.List<AsSearchProfileResult> results)Merges multiple search profile results into a single result.AsSearchProfileResultmerge(AsSearchProfileContext context, java.util.List<AsSearchProfileResult> results, AsMergeConfiguration mergeConfiguration)Merges multiple search profile results into a single result.
-
-
-
Method Detail
-
merge
default AsSearchProfileResult merge(AsSearchProfileContext context, java.util.List<AsSearchProfileResult> results)
Merges multiple search profile results into a single result.- Parameters:
context- - the search profile contextresults- - the search profiles results to merge- Returns:
- the result of the merge
-
merge
AsSearchProfileResult merge(AsSearchProfileContext context, java.util.List<AsSearchProfileResult> results, AsMergeConfiguration mergeConfiguration)
Merges multiple search profile results into a single result.- Parameters:
context- - the search profile contextresults- - the search profiles results to mergemergeConfiguration- - the merge configuration- Returns:
- the result of the merge
-
-