blob: 4ce13a7938534bba8a9679c6d1422dd4e0b1504e [file] [log] [blame]
package org.taverna.server.localworker.api;
/**
* Class that manufactures instances of {@link Worker}.
*
* @author Donal Fellows
*/
public interface WorkerFactory {
/**
* Create an instance of the low-level worker class.
*
* @return The worker object.
* @throws Exception
* If anything goes wrong.
*/
Worker makeInstance() throws Exception;
}