Interface SolrIndexOperationDao
-
- All Superinterfaces:
GenericDao<SolrIndexOperationModel>
- All Known Implementing Classes:
DefaultSolrIndexOperationDao
public interface SolrIndexOperationDao extends GenericDao<SolrIndexOperationModel>
TheSolrIndexOperationModelDAO.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SolrIndexOperationModelfindIndexOperationById(long id)Finds the index operation by id.java.util.Optional<SolrIndexOperationModel>findLastSuccesfulIndexOperation(SolrIndexModel index)Finds the last successfully finished FULL or UPDATE index operation for a given index.
-
-
-
Method Detail
-
findIndexOperationById
SolrIndexOperationModel findIndexOperationById(long id)
Finds the index operation by id.- Parameters:
id- - the index operation id- Returns:
- the index operation
-
findLastSuccesfulIndexOperation
java.util.Optional<SolrIndexOperationModel> findLastSuccesfulIndexOperation(SolrIndexModel index)
Finds the last successfully finished FULL or UPDATE index operation for a given index.- Parameters:
index- - the index- Returns:
- Optional
SolrIndexOperationModel
-
-