public static interface

ImageRequest.ImageRequestCallback

greendroid.image.ImageRequest.ImageRequestCallback
Known Indirect Subclasses

Summary

Public Methods
abstract void onImageRequestCancelled(ImageRequest request)
Callback to be invoked when the request processing has been cancelled.
abstract void onImageRequestEnded(ImageRequest request, Bitmap image)
Callback to be invoked when the request processing ended.
abstract void onImageRequestFailed(ImageRequest request, Throwable throwable)
Callback to be invoked when the request processing failed.
abstract void onImageRequestStarted(ImageRequest request)
Callback to be invoked when the request processing started.

Public Methods

public abstract void onImageRequestCancelled (ImageRequest request)

Callback to be invoked when the request processing has been cancelled.

Parameters
request ImageRequest that has been cancelled

public abstract void onImageRequestEnded (ImageRequest request, Bitmap image)

Callback to be invoked when the request processing ended.

Parameters
request ImageRequest that ended
image The resulting Bitmap

public abstract void onImageRequestFailed (ImageRequest request, Throwable throwable)

Callback to be invoked when the request processing failed.

Parameters
request ImageRequest that failed
throwable The Throwable that occurs

public abstract void onImageRequestStarted (ImageRequest request)

Callback to be invoked when the request processing started.

Parameters
request The ImageRequest that started