com.stanfy.enroscar.content.loader.LoadmoreLoader 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.content.loader;
/**
* Interface for loaders that can load more data.
* @author Roman Mazur (Stanfy - http://stanfy.com)
*/
public interface LoadmoreLoader {
/** Load more data. */
void forceLoadMore();
/** @return true if loader can load more data */
boolean moreElementsAvailable();
/** @return true if loader is currently working */
boolean isBusy();
}