Package org.jamesii.core.experiments.tasks

Examples of org.jamesii.core.experiments.tasks.InvalidComputationTaskConfiguration


  public synchronized void scheduleConfigurations(
      IExperimentExecutionController execController,
      List<TaskConfiguration> taskConfigurations) {
    for (TaskConfiguration taskConfig : taskConfigurations) {
      if (taskConfig == null) {
        throw new InvalidComputationTaskConfiguration(
            "Invalid computation task configuration (null) was added to the task runner. Execution aborted.");
      }
      addExperimentController(taskConfig, execController);
      todoList.add(taskConfig);
    }
View Full Code Here

TOP

Related Classes of org.jamesii.core.experiments.tasks.InvalidComputationTaskConfiguration

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.