Uses of Class
planetj.util.CMTimerTask

Packages that use CMTimerTask
planetj.dataengine.autorun   
planetj.dataengine.cache   
planetj.dataengine.task   
planetj.util   
 

Uses of CMTimerTask in planetj.dataengine.autorun
 

Subclasses of CMTimerTask in planetj.dataengine.autorun
 class AutoRunTask
          Describes how an Operation should be automatically run.
 class BatchProcessTask
          A Task used for processing the results of an operation periodically.
 class EmailTask
          A Task used for sending out an operation periodically via email
 

Uses of CMTimerTask in planetj.dataengine.cache
 

Subclasses of CMTimerTask in planetj.dataengine.cache
 class CacheCleanupTask
          This thread periodically goes through all of the caches and removes any RowCollections that have expired.
 class CacheTrackingTask
          This thread periodically goes through all of the caches and removes any RowCollections that have expired.
 

Uses of CMTimerTask in planetj.dataengine.task
 

Subclasses of CMTimerTask in planetj.dataengine.task
 class DataEngineTimerTask
          DataEngine time task creates and clears the current executing context each time the task starts and stops.
 class RetrieveLibrariesTask
          When this task runs, it uses the DataEngine to retrieve a Map of all the libraries for a given system alias.
 class RetrieveTablesTask
           
 class TaskTester
           
 

Uses of CMTimerTask in planetj.util
 

Methods in planetj.util with parameters of type CMTimerTask
 void TaskScheduler.schedule(String pTimerKey, CMTimerTask pTask, long pDelay)
          Schedules the task in the timer for the given key.
 void TaskScheduler.schedule(String pTimerKey, CMTimerTask pTask, long pDelay, long pPeriod)
          Schedules the task in the timer for the given key.
 void TaskScheduler.schedule(String pTimerKey, CMTimerTask pTask, Date pTime)
          Schedules the task using the timer for the given key.
 void TaskScheduler.schedule(String pTimerKey, CMTimerTask pTask, Date pFirstTime, long pPeriod)
          Schedule the task in the timer for the given key.
 void TaskScheduler.scheduleAtFixedRate(String pTimerKey, CMTimerTask pTask, long pDelay, long pPeriod)
          Schedules the task in the timer for the specified key.
 void TaskScheduler.scheduleAtFixedRate(String pTimerKey, CMTimerTask pTask, Date pFirstTime, long pPeriod)
          Schedules the task in the timer for the specified key.