Interface SearchIndexingPlanExecutionReport
-
public interface SearchIndexingPlanExecutionReport
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description List<EntityReference>failingEntities()default List<EntityReference>getFailingEntities()Deprecated.UsefailingEntities()instead.default Optional<Throwable>getThrowable()Deprecated.Usethrowable()instead.Optional<Throwable>throwable()
-
-
-
Method Detail
-
throwable
Optional<Throwable> throwable()
- Returns:
- The
ExceptionorErrorthrown when indexing failed, orOptional.empty()if indexing succeeded.
-
getThrowable
@Deprecated default Optional<Throwable> getThrowable()
Deprecated.Usethrowable()instead.- Returns:
- The
ExceptionorErrorthrown when indexing failed, orOptional.empty()if indexing succeeded.
-
failingEntities
List<EntityReference> failingEntities()
- 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.
-
getFailingEntities
@Deprecated default List<EntityReference> getFailingEntities()
Deprecated.UsefailingEntities()instead.- 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.
-
-