Class LocalSearchPhaseLifecycleListenerAdapter<Solution_>
- java.lang.Object
-
- org.optaplanner.core.impl.solver.event.SolverLifecycleListenerAdapter<Solution_>
-
- org.optaplanner.core.impl.localsearch.event.LocalSearchPhaseLifecycleListenerAdapter<Solution_>
-
- Type Parameters:
Solution_- the solution type, the class with thePlanningSolutionannotation
- All Implemented Interfaces:
EventListener,LocalSearchPhaseLifecycleListener<Solution_>,SolverLifecycleListener<Solution_>
- Direct Known Subclasses:
AbstractAcceptor,AbstractFinalistPodium,AbstractLocalSearchForager
public abstract class LocalSearchPhaseLifecycleListenerAdapter<Solution_> extends SolverLifecycleListenerAdapter<Solution_> implements LocalSearchPhaseLifecycleListener<Solution_>
An adapter forLocalSearchPhaseLifecycleListener.
-
-
Constructor Summary
Constructors Constructor Description LocalSearchPhaseLifecycleListenerAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidphaseEnded(LocalSearchPhaseScope<Solution_> phaseScope)voidphaseStarted(LocalSearchPhaseScope<Solution_> phaseScope)voidstepEnded(LocalSearchStepScope<Solution_> stepScope)voidstepStarted(LocalSearchStepScope<Solution_> stepScope)-
Methods inherited from class org.optaplanner.core.impl.solver.event.SolverLifecycleListenerAdapter
solvingEnded, solvingStarted
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.optaplanner.core.impl.solver.event.SolverLifecycleListener
solvingEnded, solvingStarted
-
-
-
-
Method Detail
-
phaseStarted
public void phaseStarted(LocalSearchPhaseScope<Solution_> phaseScope)
- Specified by:
phaseStartedin interfaceLocalSearchPhaseLifecycleListener<Solution_>
-
stepStarted
public void stepStarted(LocalSearchStepScope<Solution_> stepScope)
- Specified by:
stepStartedin interfaceLocalSearchPhaseLifecycleListener<Solution_>
-
stepEnded
public void stepEnded(LocalSearchStepScope<Solution_> stepScope)
- Specified by:
stepEndedin interfaceLocalSearchPhaseLifecycleListener<Solution_>
-
phaseEnded
public void phaseEnded(LocalSearchPhaseScope<Solution_> phaseScope)
- Specified by:
phaseEndedin interfaceLocalSearchPhaseLifecycleListener<Solution_>
-
-