Interface PartitionedSearchPhaseLifecycleListener<Solution_>
-
- Type Parameters:
Solution_
- the solution type, the class with thePlanningSolution
annotation
- All Superinterfaces:
EventListener
,SolverLifecycleListener<Solution_>
- All Known Implementing Classes:
DefaultPartitionedSearchPhase
public interface PartitionedSearchPhaseLifecycleListener<Solution_> extends SolverLifecycleListener<Solution_>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
phaseEnded(PartitionedSearchPhaseScope<Solution_> phaseScope)
void
phaseStarted(PartitionedSearchPhaseScope<Solution_> phaseScope)
void
stepEnded(PartitionedSearchStepScope<Solution_> stepScope)
void
stepStarted(PartitionedSearchStepScope<Solution_> stepScope)
-
Methods inherited from interface org.optaplanner.core.impl.solver.event.SolverLifecycleListener
solvingEnded, solvingStarted
-
-
-
-
Method Detail
-
phaseStarted
void phaseStarted(PartitionedSearchPhaseScope<Solution_> phaseScope)
-
stepStarted
void stepStarted(PartitionedSearchStepScope<Solution_> stepScope)
-
stepEnded
void stepEnded(PartitionedSearchStepScope<Solution_> stepScope)
-
phaseEnded
void phaseEnded(PartitionedSearchPhaseScope<Solution_> phaseScope)
-
-