Package org.apache.curator.x.rpc.configuration

Examples of org.apache.curator.x.rpc.configuration.ConfigurationBuilder


        Runtime.getRuntime().addShutdownHook(hook);
    }

    public static CuratorProjectionServer startServer(String configurationSource) throws Exception
    {
        Configuration configuration = new ConfigurationBuilder(configurationSource).build();

        final CuratorProjectionServer server = new CuratorProjectionServer(configuration);
        server.start();
        return server;
    }
View Full Code Here

TOP

Related Classes of org.apache.curator.x.rpc.configuration.ConfigurationBuilder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.