190191192193194195196
/** * creates a {@link Tube} that dumps messages that pass through. */ public Tube createDumpTube(String name, PrintStream out, Tube next) { return new DumpTube(name, out, next); }
157158159160161162163
216217218219220221222
189190191192193194195