Package com.netflix.staash.mesh

Examples of com.netflix.staash.mesh.InstanceInfo


   
    @Inject
    public MemoryServer(InstanceRegistry instanceRegistry, ClientFactory clientFactory, EndpointPolicy endpointPolicy, String id) {
        this.instanceRegistry = instanceRegistry;
        this.clientFactory    = clientFactory;
        this.instanceInfo     = new InstanceInfo(id, UUID.randomUUID());
        this.endpointPolicy   = endpointPolicy;
       
        verbHandlers.put(Verb.DATA_PUSH,       new DataPushHandler());
        verbHandlers.put(Verb.DATA_REQUEST,    new DataRequestHandler());
        verbHandlers.put(Verb.DATA_RESPONSE,   new DataResponseHandler());
View Full Code Here

TOP

Related Classes of com.netflix.staash.mesh.InstanceInfo

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.