groovy.runtime.metaclass.ChannelFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nextflow Show documentation
Show all versions of nextflow Show documentation
A DSL modelled around the UNIX pipe concept, that simplifies writing parallel and scalable pipelines in a portable manner
The newest version!
package groovy.runtime.metaclass;
/**
* Interface to define channel factory extensions e.g.
*
* Channel.foo.fromSomething(params)
*
* @author Paolo Di Tommaso
*/
public interface ChannelFactory {
Object invokeExtensionMethod(String method, Object[] args);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy