Package com.couchbase.client.core.endpoint.kv

Examples of com.couchbase.client.core.endpoint.kv.KeyValueEndpoint


     */
    static class KeyValueEndpointFactory implements EndpointFactory {
        @Override
        public Endpoint create(String hostname, String bucket, String password, int port, CoreEnvironment env,
            RingBuffer<ResponseEvent> responseBuffer) {
            return new KeyValueEndpoint(hostname, bucket, password, port, env, responseBuffer);
        }
View Full Code Here

TOP

Related Classes of com.couchbase.client.core.endpoint.kv.KeyValueEndpoint

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.