com.stanfy.enroscar.goro.FutureObserver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enroscar-goro Show documentation
Show all versions of enroscar-goro Show documentation
Android laibrary for handling tasks in multiple queues
package com.stanfy.enroscar.goro;
/**
* Task execution result listener.
*
* @param execution result type
*
* @author Roman Mazur - Stanfy (http://stanfy.com)
*/
public interface FutureObserver {
void onSuccess(V value);
void onError(Throwable error);
}