本文整理了Java中com.google.protobuf.Parser.parsePartialDelimitedFrom()
方法的一些代码示例,展示了Parser.parsePartialDelimitedFrom()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Parser.parsePartialDelimitedFrom()
方法的具体详情如下:
包路径:com.google.protobuf.Parser
类名称:Parser
方法名:parsePartialDelimitedFrom
[英]Like #parseDelimitedFrom(InputStream), but does not throw an exception if the message is missing required fields. Instead, a partial message is returned.
[中]比如#parseDelimitedFrom(InputStream),但如果消息缺少必填字段,则不会引发异常。相反,会返回部分消息。
代码示例来源:origin: SonarSource/sonarqube
@Override
protected MSG doNext() {
try {
return parser.parsePartialDelimitedFrom(input);
} catch (InvalidProtocolBufferException e) {
throw ContextException.of(e);
}
}
代码示例来源:origin: org.sonarsource.sonarqube/sonar-core
@Override
protected MSG doNext() {
try {
return parser.parsePartialDelimitedFrom(input);
} catch (InvalidProtocolBufferException e) {
throw ContextException.of(e);
}
}
内容来源于网络,如有侵权,请联系作者删除!