Package 

Class MapTileModuleProviderBase.TileLoader

  • All Implemented Interfaces:
    java.lang.Runnable

    
    public abstract class MapTileModuleProviderBase.TileLoader
     implements Runnable
                        

    Load the requested tile. An abstract internal class whose objects are used by worker threadsto acquire tiles from servers. It processes tiles from the 'pending' set to the 'working' setas they become available. The key unimplemented method is 'loadTile'.

    • Method Summary

      Modifier and Type Method Description
      abstract Drawable loadTile(long pMapTileIndex) Actual load of the requested tile.
      Drawable loadTileIfReachable(long pMapTileIndex)
      final void run() This is a functor class of type Runnable.
      • Methods inherited from class java.lang.Runnable

        run
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • run

         final void run()

        This is a functor class of type Runnable. The run method is the encapsulated function.