org.apache.hbase.thirdparty.com.google.protobuf.ByteString.newCodedInput()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(2.2k)|赞(0)|评价(0)|浏览(152)

本文整理了Java中org.apache.hbase.thirdparty.com.google.protobuf.ByteString.newCodedInput()方法的一些代码示例,展示了ByteString.newCodedInput()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ByteString.newCodedInput()方法的具体详情如下:
包路径:org.apache.hbase.thirdparty.com.google.protobuf.ByteString
类名称:ByteString
方法名:newCodedInput

ByteString.newCodedInput介绍

暂无

代码示例

代码示例来源:origin: apache/hbase

/**
 * This version of protobuf's mergeFrom avoids the hard-coded 64MB limit for decoding
 * buffers when working with ByteStrings
 * @param builder current message builder
 * @param bs ByteString containing the
 * @throws IOException
 */
public static void mergeFrom(Message.Builder builder, ByteString bs) throws IOException {
 final CodedInputStream codedInput = bs.newCodedInput();
 codedInput.setSizeLimit(bs.size());
 builder.mergeFrom(codedInput);
 codedInput.checkLastTagWas(0);
}

代码示例来源:origin: apache/hbase

} else {
 CodedInputStream cis = UnsafeByteOperations.unsafeWrap(
   new ByteBuffByteInput(buf, 0, buf.limit()), 0, buf.limit()).newCodedInput();
 cis.enableAliasing(true);
 this.connectionHeader = ConnectionHeader.parseFrom(cis);

代码示例来源:origin: apache/hbase

cis = UnsafeByteOperations.unsafeWrap(buf.array(), 0, buf.limit()).newCodedInput();
} else {
 cis = UnsafeByteOperations
   .unsafeWrap(new ByteBuffByteInput(buf, 0, buf.limit()), 0, buf.limit()).newCodedInput();

代码示例来源:origin: org.apache.hbase/hbase-client

/**
 * This version of protobuf's mergeFrom avoids the hard-coded 64MB limit for decoding
 * buffers when working with ByteStrings
 * @param builder current message builder
 * @param bs ByteString containing the
 * @throws IOException
 */
public static void mergeFrom(Message.Builder builder, ByteString bs) throws IOException {
 final CodedInputStream codedInput = bs.newCodedInput();
 codedInput.setSizeLimit(bs.size());
 builder.mergeFrom(codedInput);
 codedInput.checkLastTagWas(0);
}

代码示例来源:origin: com.aliyun.hbase/alihbase-client

/**
 * This version of protobuf's mergeFrom avoids the hard-coded 64MB limit for decoding
 * buffers when working with ByteStrings
 * @param builder current message builder
 * @param bs ByteString containing the
 * @throws IOException
 */
public static void mergeFrom(Message.Builder builder, ByteString bs) throws IOException {
 final CodedInputStream codedInput = bs.newCodedInput();
 codedInput.setSizeLimit(bs.size());
 builder.mergeFrom(codedInput);
 codedInput.checkLastTagWas(0);
}

相关文章