*/
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);
}