当前位置: 首页>>代码示例>>Java>>正文


Java Exhibitors类代码示例

本文整理汇总了Java中org.apache.curator.ensemble.exhibitor.Exhibitors的典型用法代码示例。如果您正苦于以下问题:Java Exhibitors类的具体用法?Java Exhibitors怎么用?Java Exhibitors使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


Exhibitors类属于org.apache.curator.ensemble.exhibitor包,在下文中一共展示了Exhibitors类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: withExhibitors

import org.apache.curator.ensemble.exhibitor.Exhibitors; //导入依赖的package包/类
public CuratorFrameworkBuilder withExhibitors(int port, final String... exhibitors) {
    Preconditions.checkNotNull(exhibitors);
    Preconditions.checkArgument(exhibitors.length > 0);
    Preconditions.checkArgument(port > 0);
    if (this.zookeeperConnectionString != null) {
        BootstrapException.zookeeperExhibitorConflict();
    }
    this.exhibitors = new Exhibitors(Arrays.asList(exhibitors), port, new Exhibitors.BackupConnectionStringProvider() {
        @Override
        public String getBackupConnectionString() throws Exception {
            //no backup zookeeper connection string
            return "";
        }
    });
    return this;
}
 
开发者ID:Kixeye,项目名称:chassis,代码行数:17,代码来源:CuratorFrameworkBuilder.java

示例2: exhibitorEnsembleProvider

import org.apache.curator.ensemble.exhibitor.Exhibitors; //导入依赖的package包/类
private ExhibitorEnsembleProvider exhibitorEnsembleProvider() {

        Exhibitors exhibitors = new Exhibitors(Arrays.asList(exhibitorInstances.get().split(";")), restPort,
                new Exhibitors.BackupConnectionStringProvider() {

                    @Override
                    public String getBackupConnectionString() throws Exception {
                        return backupConnections.get();
                    }
                });

        return new ExhibitorEnsembleProvider(exhibitors, restClient, restPath, pollingTimeMs, retryPolicy);
    }
 
开发者ID:dclements,项目名称:cultivar_old,代码行数:14,代码来源:EnsembleProviderProvider.java

示例3: makeCurator

import org.apache.curator.ensemble.exhibitor.Exhibitors; //导入依赖的package包/类
private CuratorFramework makeCurator(final String connectString, int baseSleepTimeMs, int maxRetries, int exhibitorPort, String exhibitorRestPath, int pollingMs)
{
    List<String>    hostnames = Lists.newArrayList();
    String[]        parts = connectString.split(",");
    for ( String spec : parts )
    {
        String[]        subParts = spec.split(":");
        try
        {
            if ( subParts.length != 2 )
            {
                log.error("Bad connection string: " + connectString);
                return null;
            }
        }
        catch ( NumberFormatException e )
        {
            log.error("Bad connection string: " + connectString);
            return null;
        }

        hostnames.add(subParts[0]);
    }

    ExponentialBackoffRetry retryPolicy = new ExponentialBackoffRetry(baseSleepTimeMs, maxRetries);
    Exhibitors.BackupConnectionStringProvider   backupConnectionStringProvider = new Exhibitors.BackupConnectionStringProvider()
    {
        @Override
        public String getBackupConnectionString() throws Exception
        {
            return connectString;
        }
    };

    CuratorFrameworkFactory.Builder builder = CuratorFrameworkFactory
        .builder()
        .connectString(connectString)
        .retryPolicy(retryPolicy);
    if ( exhibitorPort > 0 )
    {
        Exhibitors                  exhibitors = new Exhibitors(hostnames, exhibitorPort, backupConnectionStringProvider);
        ExhibitorEnsembleProvider   ensembleProvider = new ExhibitorEnsembleProvider(exhibitors, new DefaultExhibitorRestClient(), exhibitorRestPath + "exhibitor/v1/cluster/list", pollingMs, retryPolicy);
        builder = builder.ensembleProvider(ensembleProvider);
    }
    else
    {
        log.warn("Exhibitor on the shared ZooKeeper config ensemble is not being used.");
    }
    return builder.build();
}
 
开发者ID:dcos,项目名称:exhibitor,代码行数:51,代码来源:ExhibitorCreator.java

示例4: ExhibitorEnsembleProvider

import org.apache.curator.ensemble.exhibitor.Exhibitors; //导入依赖的package包/类
ExhibitorEnsembleProvider(final Exhibitors exhibitors, final ExhibitorRestClient restClient,
                                 final String restUriPath, final int pollingMs, final RetryPolicy retryPolicy) {
    super(exhibitors, restClient, restUriPath, pollingMs, retryPolicy);
}
 
开发者ID:zalando,项目名称:nakadi,代码行数:5,代码来源:ZooKeeperHolder.java

示例5: zookeeperInitializationFailed

import org.apache.curator.ensemble.exhibitor.Exhibitors; //导入依赖的package包/类
public static void zookeeperInitializationFailed(String zookeeperHost, Exhibitors exhibitors, Exception e) {
    throw new ZookeeperInitializationException(zookeeperHost, exhibitors, e);
}
 
开发者ID:Kixeye,项目名称:chassis,代码行数:4,代码来源:BootstrapException.java

示例6: ZookeeperInitializationException

import org.apache.curator.ensemble.exhibitor.Exhibitors; //导入依赖的package包/类
public ZookeeperInitializationException(String zookeeperHost, Exhibitors exhibitors, Exception e) {
    super("Unable to initialize zookeeper configuration for zookeeper " + zookeeperHost + ". Exhibitors:" + ReflectionToStringBuilder.reflectionToString(exhibitors), e);
}
 
开发者ID:Kixeye,项目名称:chassis,代码行数:4,代码来源:BootstrapException.java

示例7: KixeyeExhibitorEnsembleProvider

import org.apache.curator.ensemble.exhibitor.Exhibitors; //导入依赖的package包/类
/**
 * @param exhibitors  the current set of exhibitor instances (can be changed later via {@link #setExhibitors(org.apache.curator.ensemble.exhibitor.Exhibitors)})
 * @param restClient  the rest client to use (use {@link org.apache.curator.ensemble.exhibitor.DefaultExhibitorRestClient} for most cases)
 * @param restUriPath the path of the REST call used to get the server set. Usually: <code>/exhibitor/v1/cluster/list</code>
 * @param pollingMs   how ofter to poll the exhibitors for the list
 * @param retryPolicy retry policy to use when connecting to the exhibitors
 */
public KixeyeExhibitorEnsembleProvider(Exhibitors exhibitors, ExhibitorRestClient restClient, String restUriPath, int pollingMs, RetryPolicy retryPolicy) {
    super(exhibitors, restClient, restUriPath, pollingMs, retryPolicy);
    this.initialExhibitors = exhibitors;
}
 
开发者ID:Kixeye,项目名称:chassis,代码行数:12,代码来源:KixeyeExhibitorEnsembleProvider.java


注:本文中的org.apache.curator.ensemble.exhibitor.Exhibitors类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。