]> gitweb.fperrin.net Git - GpsPrune.git/blob - src/tim/prune/gui/map/TileConsumer.java
Version 20.4, May 2021
[GpsPrune.git] / src / tim / prune / gui / map / TileConsumer.java
1 package tim.prune.gui.map;
2
3 /**
4  * Interface used by the MapTileManager to communicate back to its consumers
5  */
6 public interface TileConsumer
7 {
8         /** Let the consumer know that the tiles have been updated */
9         public void tilesUpdated(boolean inIsOk);
10
11         /** Let the consume know that a cache failure occurred */
12         public void reportCacheFailure();
13 }