All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class interbase.interclient.ServerStatistics

java.lang.Object
   |
   +----interbase.interclient.ServerStatistics

public final class ServerStatistics
extends Object
implements Statistics
InterClient Extension for future release

Various statistics about database page reads and writes and other statistics for a server, accumulated from server startup time.

See Also:
Statistics, ConnectionStatistics, getStatistics

Method Index

 o getDiskReads()
Number of disk page reads since server started.. InterClient Extension.
 o getDiskWrites()
Number of disk page writes since server started. InterClient Extension.
 o getMemoryInUse()
Get the server memory in use for all connections to this server. InterClient Extension.
 o getMemoryInUse(String)
Get the server memory in use for all connections to a specific database. InterClient Extension.
 o getMemoryReads()
Number of memory reads from cache since server started.. InterClient Extension.
 o getMemoryWrites()
Number of memory writes to cache since server started.. InterClient Extension.

Methods

 o getMemoryReads
  public int getMemoryReads() throws SQLException
InterClient Extension for future release

Number of memory reads from cache since server started..

Throws: SQLException
Not yet implemented.
See Also:
getMemoryReads
 o getMemoryWrites
  public int getMemoryWrites() throws SQLException
InterClient Extension for future release

Number of memory writes to cache since server started..

Throws: SQLException
Not yet implemented.
See Also:
getMemoryWrites
 o getDiskReads
  public int getDiskReads() throws SQLException
InterClient Extension for future release

Number of disk page reads since server started..

Throws: SQLException
Not yet implemented.
See Also:
getDiskReads
 o getDiskWrites
  public int getDiskWrites() throws SQLException
InterClient Extension for future release

Number of disk page writes since server started.

Throws: SQLException
Not yet implemented.
See Also:
getDiskWrites
 o getMemoryInUse
  public int getMemoryInUse() throws SQLException
InterClient Extension for future release

Get the server memory in use for all connections to this server.

Returns:
the server memory in use.
Throws: SQLException
Not yet implemented.
 o getMemoryInUse
  public int getMemoryInUse(String database) throws SQLException
InterClient Extension for future release

Get the server memory in use for all connections to a specific database.

Returns:
the server memory in use for a particular database.
Throws: SQLException
Not yet implemented.

All Packages  Class Hierarchy  This Package  Previous  Next  Index