com.stanfy.enroscar.async.AsyncObserver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enroscar-content Show documentation
Show all versions of enroscar-content Show documentation
Helper classes and extended abstractions for Android loaders, content resolvers, and DB access.
package com.stanfy.enroscar.async;
/**
* Observer of async result.
*
* @param data type
* @author Roman Mazur - Stanfy (http://stanfy.com)
*/
public interface AsyncObserver {
void onError(Throwable e);
void onResult(D data);
}