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

com.twitter.elephantbird.thrift.AbstractThriftBinaryDeserializer Maven / Gradle / Ivy

The newest version!
package com.twitter.elephantbird.thrift;

import org.apache.thrift.TDeserializer;
import org.apache.thrift.protocol.TBinaryProtocol;
import org.apache.thrift.protocol.TProtocolFactory;

/**
 * A shim on top of thrift to allow for thrift 0.7/0.9 compatibility.
 * 
 * This one is designed for thrift 0.9 and above
 *
 */
abstract class AbstractThriftBinaryDeserializer extends TDeserializer {
  public AbstractThriftBinaryDeserializer(TProtocolFactory protocolFactory) {
    super(protocolFactory);
  }

  protected void resetAndInitialize(TBinaryProtocol protocol, int newLength) {
    protocol.reset();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy