org.infinispan.commons.util.Util.hexIdHashCode()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(1.0k)|赞(0)|评价(0)|浏览(101)

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

Util.hexIdHashCode介绍

[英]Prints the identity hash code of the object passed as parameter in an hexadecimal format in order to safe space.
[中]以十六进制格式打印作为参数传递的对象的标识哈希代码,以保护空间安全。

代码示例

代码示例来源:origin: org.infinispan/infinispan-core

@Override
public void write(MarshalledEntry entry) {
 assertRunning();
 record("write");
 if (configuration.slow()) {
   TestingUtil.sleepThread(SLOW_STORE_WAIT);
 }
 if (entry!= null) {
   if (trace) log.tracef("Store %s in dummy map store@%s", entry, Util.hexIdHashCode(store));
   store.put(entry.getKey(), serialize(entry));
 }
}

代码示例来源:origin: org.infinispan/infinispan-tree

log.info("HC " + nodeC + " " + Util.hexIdHashCode(nodeC));
Node x = treeCache.getRoot().getChild(Fqn.fromString("b/c"));
log.info("HC " + x + " " + Util.hexIdHashCode(x));

相关文章