Interface Callback

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface Callback

This interface defines a call(OutputItem) function

which can be applied on an OutputItem via OutputItem.setCallback(Callback)

when using PDFreactor.convert(Configuration, OutputStreamProvider).

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    call(OutputItem outputItem)
    A callback function which is triggered after a partial result has been finished.