Interface SnSearchListener
- All Known Implementing Classes:
CatalogVersionFilterSnSearchListener,SnAsSearchProfileCalculationListener
public interface SnSearchListener
Listener for search operations.
-
Method Summary
Modifier and TypeMethodDescriptiondefault voidafterSearch(SnSearchContext context) Handles a notification that the search operation has just completed.default voidafterSearchError(SnSearchContext context) Handles a notification that the search operation failed (this may also be due to listeners failing).default voidbeforeSearch(SnSearchContext context) Handles a notification that the search operation is about to begin execution.
-
Method Details
-
beforeSearch
Handles a notification that the search operation is about to begin execution.- Parameters:
context- - the search context- Throws:
SnSearchException- if an error occurs
-
afterSearch
Handles a notification that the search operation has just completed.- Parameters:
context- - the search context- Throws:
SnSearchException- if an error occurs
-
afterSearchError
Handles a notification that the search operation failed (this may also be due to listeners failing).- Parameters:
context- - the search context- Throws:
SnSearchException- if an error occurs
-