synchronized
void
|
onCancellation()
Called by a producer whenever it is cancelled and won't produce any more results
|
abstract
void
|
onCancellationImpl()
Called by onCancellation, override this method instead
|
synchronized
void
|
onFailure(Throwable t)
Called by a producer whenever it terminates further work due to Throwable being thrown.
|
abstract
void
|
onFailureImpl(Throwable t)
Called by onFailure, override this method instead
|
synchronized
void
|
onNewResult(T newResult, boolean isLast)
Called by a producer whenever new data is produced.
|
abstract
void
|
onNewResultImpl(T newResult, boolean isLast)
Called by onNewResult, override this method instead.
|
synchronized
void
|
onProgressUpdate(float progress)
Called when the progress updates.
|
void
|
onProgressUpdateImpl(float progress)
Called when the progress updates
|
void
|
onUnhandledException(Exception e)
Called whenever onNewResultImpl or onFailureImpl throw an exception
|