Interface MonitorResults
-
- All Known Subinterfaces:
CacheResults
,CacheResultsOnServerLevel
,DBConnectionResults
,JobResults
,UserConnectionResults
public interface MonitorResults
The interfaceMonitorResults
represents the results of a monitor retrieval.- Since:
- MicroStrategy Web 9.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Enumeration
elements()
Returns an enumeration over all the individual items in the collection.int
getCount()
Returns the total count of items returned in the browsing request.CountSummary
getCountSummary()
Returns the summary count information.int
getLevel()
Returns the level of data asked for in the request to get results.boolean
getServerBusyIndicator()
Return the Server busy indicatorint
getTotal()
Returns the total count of monitor objects that is returned.
-
-
-
Method Detail
-
getCount
int getCount()
Returns the total count of items returned in the browsing request.- Returns:
- the total count of items returned in the browsing request.
-
getTotal
int getTotal()
Returns the total count of monitor objects that is returned. Please note that this is different from thegetCount()
method. This method is useful in determining whether there are more monitor objects that could be obtained by an incremental fetch.
-
getServerBusyIndicator
boolean getServerBusyIndicator()
Return the Server busy indicator- Returns:
- the Server busy indicator
-
getCountSummary
CountSummary getCountSummary()
Returns the summary count information.- Returns:
- the summary count information.
-
elements
java.util.Enumeration elements()
Returns an enumeration over all the individual items in the collection.- Returns:
- an enumeration.
-
getLevel
int getLevel()
Returns the level of data asked for in the request to get results. It comes fromEnumDSSXMLLevelFlags
.- Returns:
- the level of data asked for.
-
-