Back to project page CartoCache.
The source code is released under:
Apache License
If you think the Android project CartoCache listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.codeandmagic.cartocache; //w w w . jav a 2s . c om import java.util.Collection; /** * Created by evelyne24. */ public interface DataFetcher<P extends Place> { public static interface Callback<P extends Place> { void onSuccess(final QTile qTile, final Collection<P> places); void onError(final QTile qTile, final Throwable e); } public void requestPlaces(final QTile qTile, final Callback<P> callback); }