edu.upc.dama.dex.core
Class GraphPool.Statistics

java.lang.Object
  extended by edu.upc.dama.dex.core.GraphPool.Statistics
Enclosing class:
GraphPool

public class GraphPool.Statistics
extends java.lang.Object

Statistics of a GraphPool.

It gives information about basic statistics of the GraphPool such as number of written KBytes or number of cached KBytes.


Field Summary
 long cache
          Size of cache in KBytes.
 long data
          Size of data file in KBytes.
 long in
          KBytes read.
 long out
          KBytes written.
 long temp
          Size of temp file in KBytes.
 
Constructor Summary
GraphPool.Statistics()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

in

public long in
KBytes read.


out

public long out
KBytes written.


data

public long data
Size of data file in KBytes.


cache

public long cache
Size of cache in KBytes.


temp

public long temp
Size of temp file in KBytes.

Constructor Detail

GraphPool.Statistics

public GraphPool.Statistics()