Package org.kitesdk.morphline.stdlib

Examples of org.kitesdk.morphline.stdlib.DropRecordBuilder$DropRecord


   * Compiles the given morphline config using the given morphline context. The returned command
   * will feed records into finalChild or into /dev/null if finalChild is null.
   */
  public Command compile(Config morphlineConfig, MorphlineContext morphlineContext, Command finalChild) {
    if (finalChild == null) {
      finalChild = new DropRecordBuilder().build(null, null, null, morphlineContext);
    }
    return new PipeBuilder().build(morphlineConfig, null, finalChild, morphlineContext);
  }
View Full Code Here


    cloudClient.shutdown();
  }
 
  @Override
  protected void commit() throws Exception {
    morphline = new DropRecordBuilder().build(null, null, null, null); // just a dummy to make the superclass happy
    super.commit();
  }
View Full Code Here

TOP

Related Classes of org.kitesdk.morphline.stdlib.DropRecordBuilder$DropRecord

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.