Interface IDocumentReaderPrepareCompletion
-
public interface IDocumentReaderPrepareCompletion
Interface defining callback object for receiving notifications on Documents Database preparation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onPrepareCompleted(boolean status, DocumentReaderException error)
Notifies on preparation process endvoid
onPrepareProgressChanged(int progress)
Notifies when preparation progress is changed
-
-
-
Method Detail
-
onPrepareProgressChanged
void onPrepareProgressChanged(int progress)
Notifies when preparation progress is changed- Parameters:
progress
- current % value of progress
-
onPrepareCompleted
void onPrepareCompleted(boolean status, DocumentReaderException error)
Notifies on preparation process end- Parameters:
status
- result status of preparationerror
- error message, if any
-
-