Uses of Interface
org.apache.jackrabbit.oak.plugins.document.check.Result
-
Packages that use Result Package Description org.apache.jackrabbit.oak.plugins.document.check -
-
Uses of Result in org.apache.jackrabbit.oak.plugins.document.check
Classes in org.apache.jackrabbit.oak.plugins.document.check that implement Result Modifier and Type Class Description class
ExceptionResult
ExceptionResult
...Fields in org.apache.jackrabbit.oak.plugins.document.check declared as Result Modifier and Type Field Description static Result
Result. END
Methods in org.apache.jackrabbit.oak.plugins.document.check that return Result Modifier and Type Method Description protected Result
Progress. newProgressResult(long numDocs, Path path)
protected Result
ProgressWithETA. newProgressResult(long numDocs, Path path)
Method parameters in org.apache.jackrabbit.oak.plugins.document.check with type arguments of type Result Modifier and Type Method Description protected abstract Optional<Callable<Void>>
AsyncDocumentProcessor. createTask(@NotNull NodeDocument document, @NotNull BlockingQueue<Result> results)
protected Optional<Callable<Void>>
AsyncNodeStateProcessor. createTask(@NotNull NodeDocument document, @NotNull BlockingQueue<Result> results)
protected Optional<Callable<Void>>
ConsistencyCheck. createTask(@NotNull NodeDocument document, @NotNull BlockingQueue<Result> results)
protected Optional<Callable<Void>>
OrphanedNodeCheck. createTask(@NotNull NodeDocument document, @NotNull BlockingQueue<Result> results)
void
CompositeDocumentProcessor. end(@NotNull BlockingQueue<Result> results)
default void
DocumentProcessor. end(@NotNull BlockingQueue<Result> results)
This method is called after the last document has been processed.void
NodeCounter. end(@NotNull BlockingQueue<Result> results)
void
Summary. end(@NotNull BlockingQueue<Result> results)
void
AsyncDocumentProcessor. processDocument(@NotNull NodeDocument document, @NotNull BlockingQueue<Result> results)
void
CompositeDocumentProcessor. processDocument(@NotNull NodeDocument document, @NotNull BlockingQueue<Result> results)
void
DocumentProcessor. processDocument(@NotNull NodeDocument document, @NotNull BlockingQueue<Result> results)
Process the given document and publish the result to theresults
queue.void
Progress. processDocument(@NotNull NodeDocument document, @NotNull BlockingQueue<Result> results)
void
Summary. processDocument(@NotNull NodeDocument document, @NotNull BlockingQueue<Result> results)
protected abstract void
AsyncNodeStateProcessor. runTask(@NotNull Path path, @Nullable NodeState state, @NotNull Consumer<Result> resultConsumer)
Responsibility of the subclass to implement the processor logic.protected void
NodeCounter. runTask(@NotNull Path path, @Nullable NodeState state, @NotNull Consumer<Result> resultConsumer)
protected void
ReferenceCheck. runTask(@NotNull Path path, @Nullable NodeState state, @NotNull Consumer<Result> resultConsumer)
Constructor parameters in org.apache.jackrabbit.oak.plugins.document.check with type arguments of type Result Constructor Description NodeStateTask(@NotNull NodeDocument document, @NotNull BlockingQueue<Result> results)
ResultWriter(BlockingQueue<Result> results, Consumer<String> resultConsumer)
-