227228229230231232233
/** * 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); }
200201202203204205206
204205206207208209210
243244245246247248249