Package com.documents4j.api
Interface IConverterFailureCallback
-
- All Known Implementing Classes:
AggregatingConverter
public interface IConverterFailureCallbackA callback that is invoked when a converter failed to convert a document.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonFailure(IConverter converter)Invoked once for any converter that failed.
-
-
-
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.
-
-