public interface

DBConnectionResults

implements MonitorResults
com.microstrategy.web.objects.admin.monitors.DBConnectionResults

Class Overview

The interface DBConnectionResults represents the result of a DB connection retrieval.

Summary

Public Methods
abstract void disconnect(DBConnection[] dbConn)
Disconnects an array of of DBConnection.
abstract DBConnection get(int i)
Returns the DBConnection at the given position.
[Expand]
Inherited Methods
From interface com.microstrategy.web.objects.admin.monitors.MonitorResults

Public Methods

public abstract void disconnect (DBConnection[] dbConn)

Disconnects an array of of DBConnection.

Parameters
dbConn an array of DBConnection objects.
Throws
MonitorManipulationException thrown if there are failures to disconnect DB connections.
WebObjectsAdminException throwns if there is any fatal error preventing this operation, such as network error, server crash, etc.

public abstract DBConnection get (int i)

Returns the DBConnection at the given position.

Parameters
i 0-based index of DBConnection objects.
Returns
  • the DBConnection object at the given position.