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