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

Packages that use ForecastDescription
ibspan.ecap.merchant.shopdecisions.dataadministration   
ibspan.ecap.merchant.shopdecisions.forecasting   
 

Uses of ForecastDescription in ibspan.ecap.merchant.shopdecisions.dataadministration
 

Methods in ibspan.ecap.merchant.shopdecisions.dataadministration with parameters of type ForecastDescription
 ForecastFact ForecastFactProcessor.createForecastFact(int startDateKey, int endDateKey, int productKey, ForecastDescription description)
           
 void DataAdministrationModule.recordForecastData(ForecastDescription forecast)
           
 

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

Methods in ibspan.ecap.merchant.shopdecisions.forecasting that return ForecastDescription
 ForecastDescription ForecastTask.call()
           Uses the ForecastEvaluator passed in the constructor to prepare the forecast.
 ForecastDescription ForecastingModule.pollResult(long millisecondsTimeout)
          Performs a blocking receive of a completed forecasting task with a timeout.
 ForecastDescription ForecastEvaluator.prepareForecast(java.lang.String productId, java.util.Date forecastStart)
          Prepares a forecast of the specified product starting at the given date.
 ForecastDescription ForecastingModule.takeResult()
          Performs a blocking receive of a completed forecasting task.
 

Methods in ibspan.ecap.merchant.shopdecisions.forecasting that return types with arguments of type ForecastDescription
 java.util.concurrent.Future<ForecastDescription> ScheduledForecastRunner.executeForecast(ForecastTask task)
          Immediately executes the specified task.
 java.util.concurrent.Future<ForecastDescription> ForecastTask.getFuture()
          Gets the Future object able to return the result of the completed task.
 java.util.concurrent.Future<ForecastDescription> ScheduledForecastRunner.scheduleForecast(ForecastTask task)
          Schedules a ForecastTask for execution.
 

Method parameters in ibspan.ecap.merchant.shopdecisions.forecasting with type arguments of type ForecastDescription
 void ForecastTask.setFuture(java.util.concurrent.Future<ForecastDescription> future)
          Sets the Future object able to return the result of the completed task.