Interface UserConnectionResults
-
- All Superinterfaces:
MonitorResults
public interface UserConnectionResults extends MonitorResults
The interfaceUserConnectionResults
represents the result of a user connection retrieval.- Since:
- MicroStrategy Web 9.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
disconnect(UserConnection[] connections)
Disconnects an array of ofUserConnection
.UserConnection
get(int i)
Returns theUserConnection
at the given position.-
Methods inherited from interface com.microstrategy.web.objects.admin.monitors.MonitorResults
elements, getCount, getCountSummary, getLevel, getServerBusyIndicator, getTotal
-
-
-
-
Method Detail
-
get
UserConnection get(int i)
Returns theUserConnection
at the given position.- Parameters:
i
- 0-based index ofUserConnection
objects.- Returns:
- the
UserConnection
object at the given position.
-
disconnect
void disconnect(UserConnection[] connections) throws MonitorManipulationException, WebObjectsAdminException
Disconnects an array of ofUserConnection
.- Parameters:
connections
- an array ofUserConnection
objects.- Throws:
MonitorManipulationException
- thrown if there are failures to disconnect user connections.WebObjectsAdminException
- throwns if there is any fatal error preventing this operation, such as network error, server crash, etc.
-
-