*/
static class QueryEndpointFactory implements EndpointFactory {
@Override
public Endpoint create(final String hostname, final String bucket, final String password, final int port,
final CoreEnvironment env, final RingBuffer<ResponseEvent> responseBuffer) {
return new QueryEndpoint(hostname, bucket, password, port, env, responseBuffer);
}