Feather2 / feather2-runtime / src / main / java / uk / co / nickthecoder / feather / runtime / command / Pipe.java
package uk.co.nickthecoder.feather.runtime.command; public class Pipe extends CommandBase { public final CommandBase producer; public final CommandBase consumer; public Pipe(CommandBase producer, CommandBase consumer) { this.producer = producer; this.consumer = consumer; } }