public static interface

IScheduler.ITask

com.microstrategy.webapi.utils.IScheduler.ITask<T>

Summary

Public Methods
abstract void run(Calendar iNow, T iT)
iNow carries the time of the run.

Public Methods

public abstract void run (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()