com.datastax.driver.core.policies.WhiteListPolicy.buildPredicate()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(2.3k)|赞(0)|评价(0)|浏览(135)

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

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));
}

相关文章