Class DelegatingSearchIndexingPlanExecutionReport
- java.lang.Object
-
- org.hibernate.search.mapper.pojo.work.impl.DelegatingSearchIndexingPlanExecutionReport
-
- All Implemented Interfaces:
SearchIndexingPlanExecutionReport
public class DelegatingSearchIndexingPlanExecutionReport extends Object implements SearchIndexingPlanExecutionReport
-
-
Constructor Summary
Constructors Constructor Description DelegatingSearchIndexingPlanExecutionReport(MultiEntityOperationExecutionReport delegate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<EntityReference>failingEntities()Optional<Throwable>throwable()
-
-
-
Constructor Detail
-
DelegatingSearchIndexingPlanExecutionReport
public DelegatingSearchIndexingPlanExecutionReport(MultiEntityOperationExecutionReport delegate)
-
-
Method Detail
-
throwable
public Optional<Throwable> throwable()
- Specified by:
throwablein interfaceSearchIndexingPlanExecutionReport- Returns:
- The
ExceptionorErrorthrown when indexing failed, orOptional.empty()if indexing succeeded.
-
failingEntities
public List<EntityReference> failingEntities()
- Specified by:
failingEntitiesin interfaceSearchIndexingPlanExecutionReport- Returns:
- A list of references to entities that may not be indexed correctly as a result of the failure.
Never
null, but may be empty.
-
-