for async loader (in html backend)

This commit is contained in:
Hannes Janetzek 2013-06-28 04:23:09 +02:00
parent e3a6f07e25
commit c137a69dc5
2 changed files with 4 additions and 0 deletions

View File

@ -30,6 +30,8 @@ public class MapTile extends Tile {
public final static int STATE_NONE = 0; public final static int STATE_NONE = 0;
public TileLoader loader;
/** /**
* STATE_LOADING means the tile is about to be loaded / loading. * STATE_LOADING means the tile is about to be loaded / loading.
* it belongs to TileLoader thread. * it belongs to TileLoader thread.

View File

@ -55,7 +55,9 @@ public abstract class TileLoader extends PausableThread {
mTileManager.passTile(tile); mTileManager.passTile(tile);
} }
} }
public void jobCompleted(MapTile tile, boolean success) {
}
@Override @Override
protected String getThreadName() { protected String getThreadName() {