Package org.apache.avro.io.parsing

Examples of org.apache.avro.io.parsing.SkipParser


public abstract class ParsingDecoder extends Decoder
  implements ActionHandler, SkipHandler {
  protected final SkipParser parser;

  public ParsingDecoder(Symbol root) throws IOException {
    this.parser = new SkipParser(root, this, this);
  }
View Full Code Here


public abstract class ParsingDecoder extends Decoder
  implements ActionHandler, SkipHandler {
  protected final SkipParser parser;

  protected ParsingDecoder(Symbol root) throws IOException {
    this.parser = new SkipParser(root, this, this);
  }
View Full Code Here

TOP

Related Classes of org.apache.avro.io.parsing.SkipParser

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.