本文整理了Java中org.apache.ignite.Ignite.resetLostPartitions()
方法的一些代码示例,展示了Ignite.resetLostPartitions()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Ignite.resetLostPartitions()
方法的具体详情如下:
包路径:org.apache.ignite.Ignite
类名称:Ignite
方法名:resetLostPartitions
[英]Clears partition's lost state and moves caches to a normal mode.
[中]清除分区的丢失状态并将缓存移动到正常模式。
代码示例来源:origin: apache/ignite
/** {@inheritDoc} */
@Override public void resetLostPartitions(Collection<String> cacheNames) {
checkIgnite();
g.resetLostPartitions(cacheNames);
}
代码示例来源:origin: apache/ignite
ignite0.resetLostPartitions(Collections.singletonList(cache1.getName()));
代码示例来源:origin: apache/ignite
verifyCacheOps(cacheName, canWrite, safe, part, ig);
ignite(0).resetLostPartitions(F.asList(CACHE_1, CACHE_2));
代码示例来源:origin: apache/ignite
ignite(4).resetLostPartitions(singletonList(DEFAULT_CACHE_NAME));
代码示例来源:origin: org.apache.ignite/ignite-spring
/** {@inheritDoc} */
@Override public void resetLostPartitions(Collection<String> cacheNames) {
checkIgnite();
g.resetLostPartitions(cacheNames);
}
内容来源于网络,如有侵权,请联系作者删除!