Java Code Examples for org.apache.hadoop.util.ProtoUtil#readRawVarint32()

The following examples show how to use org.apache.hadoop.util.ProtoUtil#readRawVarint32() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ProtobufRpcEngine.java    From hadoop with Apache License 2.0 4 votes vote down vote up
private static byte[] readVarintBytes(DataInput in) throws IOException {
  final int length = ProtoUtil.readRawVarint32(in);
  final byte[] bytes = new byte[length];
  in.readFully(bytes);
  return bytes;
}
 
Example 2
Source File: ProtobufRpcEngine.java    From hadoop with Apache License 2.0 4 votes vote down vote up
@Override
public void readFields(DataInput in) throws IOException {
  int length = ProtoUtil.readRawVarint32(in);
  theResponseRead = new byte[length];
  in.readFully(theResponseRead);
}
 
Example 3
Source File: ProtobufRpcEngine.java    From big-c with Apache License 2.0 4 votes vote down vote up
private static byte[] readVarintBytes(DataInput in) throws IOException {
  final int length = ProtoUtil.readRawVarint32(in);
  final byte[] bytes = new byte[length];
  in.readFully(bytes);
  return bytes;
}
 
Example 4
Source File: ProtobufRpcEngine.java    From big-c with Apache License 2.0 4 votes vote down vote up
@Override
public void readFields(DataInput in) throws IOException {
  int length = ProtoUtil.readRawVarint32(in);
  theResponseRead = new byte[length];
  in.readFully(theResponseRead);
}
 
Example 5
Source File: ProtobufRpcEngineShaded.java    From ratis with Apache License 2.0 4 votes vote down vote up
private static byte[] readVarintBytes(DataInput in) throws IOException {
  final int length = ProtoUtil.readRawVarint32(in);
  final byte[] bytes = new byte[length];
  in.readFully(bytes);
  return bytes;
}
 
Example 6
Source File: ProtobufRpcEngineShaded.java    From ratis with Apache License 2.0 4 votes vote down vote up
@Override
public void readFields(DataInput in) throws IOException {
  int length = ProtoUtil.readRawVarint32(in);
  theResponseRead = new byte[length];
  in.readFully(theResponseRead);
}