本文整理了Java中io.grpc.Status.hashCode()
方法的一些代码示例,展示了Status.hashCode()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Status.hashCode()
方法的具体详情如下:
包路径:io.grpc.Status
类名称:Status
方法名:hashCode
[英]Hash codes on Statuses are not well defined.
[中]状态的哈希代码没有很好地定义。
代码示例来源:origin: stackoverflow.com
static int toKey(Status s, SubStatus ss) {
final int prime = 31;
int result = 1;
result = prime * result + ((s == null) ? 0 : s.hashCode());
result = prime * result + ((ss == null) ? 0 : ss.hashCode());
return result;
}
代码示例来源:origin: io.grpc/grpc-core
@Override
public int hashCode() {
return state.hashCode() ^ status.hashCode();
}
代码示例来源:origin: com.impetus.fabric/fabric-jdbc-driver-shaded
@Override
public int hashCode() {
return state.hashCode() ^ status.hashCode();
}
内容来源于网络,如有侵权,请联系作者删除!