public interface AlgorithmPoolListener
| Modifier and Type | Method and Description |
|---|---|
void |
algorithmAdded(AlgorithmPool source,
SearchAlgorithm algorithm)
Send a message that an algorithm.
|
void |
algorithmAvailable(AlgorithmPool source,
SearchAlgorithm algorithm)
Send a message that an algorithm is available.
|
void |
algorithmRemoved(AlgorithmPool source,
SearchAlgorithm algorithm)
Send a message that an algorithm was removed from the
pool.
|
void |
algorithmUnavailable(AlgorithmPool source,
SearchAlgorithm algorithm)
Send a message that an algorithm is unvavailable.
|
void algorithmAdded(AlgorithmPool source, SearchAlgorithm algorithm)
source - The source of the added algorithm.algorithm - The added algorithm.void algorithmRemoved(AlgorithmPool source, SearchAlgorithm algorithm)
source - The source of the removed algorithm.algorithm - The removed algorithm.void algorithmAvailable(AlgorithmPool source, SearchAlgorithm algorithm)
source - The source of the available algorithm.algorithm - The algorithm made available.void algorithmUnavailable(AlgorithmPool source, SearchAlgorithm algorithm)
source - The source of the unavailable algorithm.algorithm - which is unavailable.