Package com.proofpoint.discovery.client.balancing

Examples of com.proofpoint.discovery.client.balancing.HttpServiceBalancerListenerAdapter


        this.environment = nodeInfo.getEnvironment();
        this.serviceInventoryUri = serviceInventoryConfig.getServiceInventoryUri();
        updateInterval = serviceInventoryConfig.getUpdateInterval();
        this.serviceDescriptorsCodec = serviceDescriptorsCodec;
        this.discoveryListener = new HttpServiceBalancerListenerAdapter(discoveryBalancer);

        if (serviceInventoryUri != null) {
            String scheme = serviceInventoryUri.getScheme().toLowerCase();
            checkArgument(scheme.equals("file"), "Service inventory uri must have a file scheme");
View Full Code Here

TOP

Related Classes of com.proofpoint.discovery.client.balancing.HttpServiceBalancerListenerAdapter

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.