The cascading.pipe.assembly.Discard
SubAssembly is used to shape the Tuple stream by discarding all fields
given on the constructor. All fields not listed are retained.
Example 10.7. Using Discard
// incoming -> first, last, age
assembly = new Discard( assembly, new Fields( "age" ) );
// outgoing -> first, last
Copyright © 2007-2012 Concurrent, Inc. All Rights Reserved.