Package net.sf.pipet.api

Examples of net.sf.pipet.api.AbortablePipeline


  public AbortablePipeline createJob(int interface_type, Messenger reporter)
    throws IOException
  {
    validate(reporter);
    ModuleInstance job = new PipelineJob(this, new DefaultResourceLoader(), interface_type, null, reporter);
    return new AbortablePipeline(job);
  }
View Full Code Here


  public AbortablePipeline createJob(ResourceLoader res, int interface_type, Messenger reporter)
    throws IOException
  {
    validate(reporter);
    ModuleInstance job = new PipelineJob(this, res, interface_type, null, reporter);
    return new AbortablePipeline(job);
  }
View Full Code Here

TOP

Related Classes of net.sf.pipet.api.AbortablePipeline

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.