Interface DBConnectionResults
- 
- All Superinterfaces:
 MonitorResults
public interface DBConnectionResults extends MonitorResults
The interfaceDBConnectionResultsrepresents the result of a DB connection retrieval.- Since:
 - MicroStrategy Web 9.0.0
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddisconnect(DBConnection[] dbConn)Disconnects an array of ofDBConnection.DBConnectionget(int i)Returns theDBConnectionat the given position.- 
Methods inherited from interface com.microstrategy.web.objects.admin.monitors.MonitorResults
elements, getCount, getCountSummary, getLevel, getServerBusyIndicator, getTotal 
 - 
 
 - 
 
- 
- 
Method Detail
- 
get
DBConnection get(int i)
Returns theDBConnectionat the given position.- Parameters:
 i- 0-based index ofDBConnectionobjects.- Returns:
 - the 
DBConnectionobject at the given position. 
 
- 
disconnect
void disconnect(DBConnection[] dbConn) throws MonitorManipulationException, WebObjectsAdminException
Disconnects an array of ofDBConnection.- Parameters:
 dbConn- an array ofDBConnectionobjects.- 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.
 
 - 
 
 -