Interface FetchImageCompletionHandler
-
public interface FetchImageCompletionHandlerCompletion handler used to return image data related to
SliderSlide.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonError(CollaborationException error)Reports that the operation has failed.voidonSuccess(byte[] imageData)Reports that the operation was successfully completed.
-
-
-
Method Detail
-
onSuccess
void onSuccess(byte[] imageData)
Reports that the operation was successfully completed.- Parameters:
imageData- raw binary data of an encoded image (either PNG or JPEG) that is not null.
-
onError
void onError(CollaborationException error)
Reports that the operation has failed.- Parameters:
error- information about failure details.
-
-