本文整理了Java中com.datastax.driver.core.policies.WhiteListPolicy.buildPredicate()
方法的一些代码示例,展示了WhiteListPolicy.buildPredicate()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WhiteListPolicy.buildPredicate()
方法的具体详情如下:
包路径:com.datastax.driver.core.policies.WhiteListPolicy
类名称:WhiteListPolicy
方法名:buildPredicate
暂无
代码示例来源:origin: com.datastax.cassandra/cassandra-driver-core
/**
* Creates a new policy that wraps the provided child policy but only "allows" hosts from the
* provided white list.
*
* @param childPolicy the wrapped policy.
* @param whiteList the white listed hosts. Only hosts from this list may get connected to
* (whether they will get connected to or not depends on the child policy).
*/
public WhiteListPolicy(LoadBalancingPolicy childPolicy, Collection<InetSocketAddress> whiteList) {
super(childPolicy, buildPredicate(whiteList));
}
代码示例来源:origin: com.yugabyte/cassandra-driver-core
/**
* Creates a new policy that wraps the provided child policy but only "allows" hosts
* from the provided while list.
*
* @param childPolicy the wrapped policy.
* @param whiteList the white listed hosts. Only hosts from this list may get connected
* to (whether they will get connected to or not depends on the child policy).
*/
public WhiteListPolicy(LoadBalancingPolicy childPolicy, Collection<InetSocketAddress> whiteList) {
super(childPolicy, buildPredicate(whiteList));
}
代码示例来源:origin: com.facebook.presto.cassandra/cassandra-driver
/**
* Creates a new policy that wraps the provided child policy but only "allows" hosts
* from the provided while list.
*
* @param childPolicy the wrapped policy.
* @param whiteList the white listed hosts. Only hosts from this list may get connected
* to (whether they will get connected to or not depends on the child policy).
*/
public WhiteListPolicy(LoadBalancingPolicy childPolicy, Collection<InetSocketAddress> whiteList) {
super(childPolicy, buildPredicate(whiteList));
}
代码示例来源:origin: io.prestosql.cassandra/cassandra-driver
/**
* Creates a new policy that wraps the provided child policy but only "allows" hosts
* from the provided while list.
*
* @param childPolicy the wrapped policy.
* @param whiteList the white listed hosts. Only hosts from this list may get connected
* to (whether they will get connected to or not depends on the child policy).
*/
public WhiteListPolicy(LoadBalancingPolicy childPolicy, Collection<InetSocketAddress> whiteList) {
super(childPolicy, buildPredicate(whiteList));
}
内容来源于网络,如有侵权,请联系作者删除!