Interface DBConnectionResults
-
- All Superinterfaces:
MonitorResults
public interface DBConnectionResults extends MonitorResults
The interfaceDBConnectionResults
represents 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 void
disconnect(DBConnection[] dbConn)
Disconnects an array of ofDBConnection
.DBConnection
get(int i)
Returns theDBConnection
at 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 theDBConnection
at the given position.- Parameters:
i
- 0-based index ofDBConnection
objects.- Returns:
- the
DBConnection
object at the given position.
-
disconnect
void disconnect(DBConnection[] dbConn) throws MonitorManipulationException, WebObjectsAdminException
Disconnects an array of ofDBConnection
.- Parameters:
dbConn
- an array ofDBConnection
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.
-
-