All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface interbase.interclient.Statistics

public interface Statistics
InterClient Extension for future release

An interface for various statistics about database page reads and writes. Such statistics may be implemented at the server or connection level.

See Also:
ConnectionStatistics, ServerStatistics

Method Index

 o getDiskReads()
Number of database page reads from disk.
 o getDiskWrites()
Number of database page writes to disk.
 o getMemoryReads()
Number of memory reads from InterBase cache.
 o getMemoryWrites()
Number of memory writes to InterBase cache.

Methods

 o getMemoryReads
  public abstract int getMemoryReads() throws SQLException
Number of memory reads from InterBase cache.

 o getMemoryWrites
  public abstract int getMemoryWrites() throws SQLException
Number of memory writes to InterBase cache.

 o getDiskReads
  public abstract int getDiskReads() throws SQLException
Number of database page reads from disk.

 o getDiskWrites
  public abstract int getDiskWrites() throws SQLException
Number of database page writes to disk.


All Packages  Class Hierarchy  This Package  Previous  Next  Index