Uses of Class
ibspan.ecap.merchant.shopdecisions.forecasting.ForecastTask

Packages that use ForecastTask
ibspan.ecap.merchant.shopdecisions.forecasting   
 

Uses of ForecastTask in ibspan.ecap.merchant.shopdecisions.forecasting
 

Methods in ibspan.ecap.merchant.shopdecisions.forecasting that return ForecastTask
 ForecastTask ForecastScheduler.getScheduledTask(java.lang.String productId)
          Retrieves a scheduled task of the specified product.
 ForecastTask ScheduledForecastRunner.pollForecastResult()
          Performs a non-blocking receive of a finished task.
 ForecastTask ScheduledForecastRunner.pollForecastResult(long millisecondsTimeout)
          Performs a blocking receive of a finished task with a timeout.
 ForecastTask ScheduledForecastRunner.takeCompletedTask()
          Performs a blocking receive of a finished task.
 

Methods in ibspan.ecap.merchant.shopdecisions.forecasting that return types with arguments of type ForecastTask
 java.util.List<ForecastTask> ForecastScheduler.getScheduledTasks(java.util.Date fromDate, java.util.Date toDate)
          Retrieves a list of task scheduled for execution between the given dates.
 

Methods in ibspan.ecap.merchant.shopdecisions.forecasting with parameters of type ForecastTask
 void ForecastScheduler.confirmTaskCompletion(ForecastTask task)
          Confirms that the forecast result has been received and dispatched and removing it from the pending schedule.
 java.util.concurrent.Future<ForecastDescription> ScheduledForecastRunner.executeForecast(ForecastTask task)
          Immediately executes the specified task.
 java.util.concurrent.Future<ForecastDescription> ScheduledForecastRunner.scheduleForecast(ForecastTask task)
          Schedules a ForecastTask for execution.
 java.util.Date ForecastScheduler.scheduleForecast(ForecastTask task)
          Schedules the preparation of the next forecast of the product.