Interface IConverterFailureCallback

  • All Known Implementing Classes:
    AggregatingConverter

    public interface IConverterFailureCallback
    A callback that is invoked when a converter failed to convert a document.
    • Method Detail

      • onFailure

        void onFailure​(IConverter converter)
        Invoked once for any converter that failed. This method should not execute any heavy operations in the thread that invokes this method but rather return quickly.
        Parameters:
        converter - The converter that failed.