public interface TileBuilder
Tile generator. Responsibilities: a) generate map tile based on the tile job information; b) save the tiles in TileStore
; c) report the completion information of the tile task to the tile master node
Modifier and Type | Interface and Description |
---|---|
static interface |
TileBuilder.BuildTileProcessListener
Tiling task execution status listener
|
Modifier and Type | Method and Description |
---|---|
void |
addListener(TileBuilder.BuildTileProcessListener listener)
Sets the tiling task execution status listener
|
void |
dispose()
Logs off the current tile generator
|
java.lang.Runnable |
getRunnable()
Returns the
Runnable instance of the tile generator for commiting to the execution in the thread pool. |
void |
init()
Initialize the tile generator
|
void |
setFormat(OutputFormat pFormat)
Sets the tile format
|
void |
setKvStore(KeyValueStore kvStore)
Sets the key value to the memory, the user saves the white chart information
|
void |
setOriginalPoint(Point2D pOriginalPoint)
Sets the origin point of the map tile
|
void |
setTask(TileTask task, TaskExecutingState executingState)
Sets the tiling task information and task execution status.
|
void |
setTileSize(int pImageSize)
Sets the tile size
|
void |
setTileStore(TileStore pTileStore)
Sets the tiling memory
|
void |
setTileVersion(java.lang.String tileVersion)
Sets the tile version
|
void setTask(TileTask task, TaskExecutingState executingState)
Sets the tiling task information and task execution status.
task
-executingState
-void setTileStore(TileStore pTileStore)
Sets the tiling memory
pTileStore
-void setOriginalPoint(Point2D pOriginalPoint)
Sets the origin point of the map tile
pOriginalPoint
-void addListener(TileBuilder.BuildTileProcessListener listener)
Sets the tiling task execution status listener
listener
-void setTileSize(int pImageSize)
Sets the tile size
pImageSize
-void setTileVersion(java.lang.String tileVersion)
Sets the tile version
tileVersion
-void setKvStore(KeyValueStore kvStore)
Sets the key value to the memory, the user saves the white chart information
kvStore
-void init()
Initialize the tile generator
void dispose()
Logs off the current tile generator
java.lang.Runnable getRunnable()
Returns the Runnable
instance of the tile generator for commiting to the execution in the thread pool.
void setFormat(OutputFormat pFormat)
Sets the tile format
pFormat
-