Package com.microstrategy.webapi.utils
Interface IScheduler.ITask<T>
-
- Enclosing interface:
- IScheduler<T>
public static interface IScheduler.ITask<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
run(java.util.Calendar iNow, T iT)
iNow carries the time of the run.
-
-
-
Method Detail
-
run
void run(java.util.Calendar iNow, T iT)
iNow carries the time of the run. It is the time that is scheduled or the time it was triggered. The difference between actual now and iNow will tell you how much overhead was required to get this method running. The parameter iT is always null when run on schedule. The parameter iT is used when triggering via triggerTask()
-
-