All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.twitter.elephantbird.cascading2.scheme.LzoProtobufB64LineScheme Maven / Gradle / Ivy

There is a newer version: 4.17
Show newest version
package com.twitter.elephantbird.cascading2.scheme;

import com.google.protobuf.Message;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.IOException;

/**
 * Scheme for Protobuf B64 line encoded files.
 * @deprecated please use {@link LzoProtobufScheme}
 * @author Argyris Zymnis
 */
@Deprecated
public class LzoProtobufB64LineScheme extends
  LzoProtobufScheme {
  private static final Logger LOG = LoggerFactory.getLogger(LzoProtobufB64LineScheme.class);
  public LzoProtobufB64LineScheme(Class protoClass) {
    super(protoClass);
    LOG.warn("LzoProtobufB64LineScheme is deprecated, please use LzoProtobufScheme");
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy