add 'completed' callback to TileDataSink

This commit is contained in:
Hannes Janetzek 2013-06-28 04:09:48 +02:00
parent 9752ecb43a
commit ca9440e542
2 changed files with 8 additions and 0 deletions

View File

@ -539,4 +539,10 @@ public class MapTileLoader extends TileLoader implements IRenderCallback, ITileD
public void renderWaySymbol(LineSymbol symbol) {
}
@Override
public void completed(boolean success) {
// TODO Auto-generated method stub
}
}

View File

@ -25,4 +25,6 @@ import org.oscim.core.MapElement;
public interface ITileDataSink {
void process(MapElement element);
void completed(boolean success);
}