Package com.odiago.flumebase.io

Examples of com.odiago.flumebase.io.AvroEventParser


   */
  public EventParser getEventParser() {
    if (FORMAT_DELIMITED.equals(mFormat)) {
      return new DelimitedEventParser(mParams);
    } else if (FORMAT_AVRO.equals(mFormat)) {
      return new AvroEventParser(mParams);
    } else if (FORMAT_REGEX.equals(mFormat)) {
      return new RegexEventParser(mParams);
    }

    LOG.error("No EventParser with format name: " + mFormat);
View Full Code Here

TOP

Related Classes of com.odiago.flumebase.io.AvroEventParser

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.