All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.daisy.streamline.api.tasks.TaskSystem Maven / Gradle / Ivy

The newest version!
package org.daisy.streamline.api.tasks;

import java.util.Map;

/**
 * TaskSystem is an interface used when compiling a series of InternalTasks
 * that may require both global Transformer parameters and individual
 * constructor arguments.
 * 
 * Implement this interface to create a new TaskSystem.
 * @author Joel Håkansson
 *
 */
public interface TaskSystem extends TaskGroup {
	
	/**
	 * Compile the task system using the supplied parameters
	 * @param parameters the parameters to pass to the task system
	 * @return returns a compiled task system
	 * @throws TaskSystemException if something goes wrong when compiling the task system
	 */
	public CompiledTaskSystem compile(Map parameters) throws TaskSystemException;
	

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy