Package com.redwood.scheduler.api.os
Interface OSUserSessions
-
public interface OSUserSessions
A List OS User Sessions result. This has a single methodgetResults()
to get an iterator over the current OS user sessions.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Iterator<OSUserSession>
getResults()
Get anIterator
over a collection ofOSUserSession
items.
-
-
-
Method Detail
-
getResults
Iterator<OSUserSession> getResults() throws ListOSUserSessionsException
Get anIterator
over a collection ofOSUserSession
items. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
.- Returns:
- An
Iterator
over a collection ofOSUserSession
items. - Throws:
ListOSUserSessionsException
- permanent error, cannot be recovered.
-
-