com.supermap.data.processing
类 BuildResultInfo

java.lang.Object
  继承者 com.supermap.data.processing.BuildResultInfo

public class BuildResultInfo
extends java.lang.Object

缓存结果信息类。

该类仅支持5.0版本缓存。


构造方法摘要
BuildResultInfo()
          构造一个新的缓存结果信息类。
 
方法摘要
 void dispose()
          释放 BuildResultInfo 对象占用的资源。
 int getBuildTime()
          返回缓存生成耗时,单位为秒。
 int getDrawTime()
          返回绘制耗时,单位为秒。
 int getIOTime()
          返回IO操作耗时,单位为秒。
 int getQueryTime()
          返回查询耗时,单位为秒。
 int getTileCount()
          返回缓存生成的图片张数。
 
从类 java.lang.Object 继承的方法
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

构造方法详细信息

BuildResultInfo

public BuildResultInfo()
构造一个新的缓存结果信息类。

方法详细信息

dispose

public void dispose()
释放 BuildResultInfo 对象占用的资源。


getTileCount

public int getTileCount()
返回缓存生成的图片张数。

返回:
生成的图片张数。

getBuildTime

public int getBuildTime()
返回缓存生成耗时,单位为秒。

返回:
缓存生成耗时。

getQueryTime

public int getQueryTime()
返回查询耗时,单位为秒。

返回:
查询耗时。

getDrawTime

public int getDrawTime()
返回绘制耗时,单位为秒。

返回:
绘制耗时。

getIOTime

public int getIOTime()
返回IO操作耗时,单位为秒。

返回:
IO操作耗时。