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
-
getDiskReads()
- Number of database page reads from disk.
-
getDiskWrites()
- Number of database page writes to disk.
-
getMemoryReads()
- Number of memory reads from InterBase cache.
-
getMemoryWrites()
- Number of memory writes to InterBase cache.
getMemoryReads
public abstract int getMemoryReads() throws SQLException
- Number of memory reads from InterBase cache.
getMemoryWrites
public abstract int getMemoryWrites() throws SQLException
- Number of memory writes to InterBase cache.
getDiskReads
public abstract int getDiskReads() throws SQLException
- Number of database page reads from disk.
getDiskWrites
public abstract int getDiskWrites() throws SQLException
- Number of database page writes to disk.
All Packages Class Hierarchy This Package Previous Next Index