summaryrefslogtreecommitdiffstats
path: root/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/core/communication/GatewayConnectionFactory.java
blob: d27aa850995c20f68e627c27f58b40c4ee0e2e6e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.http.client.core.communication;

/**
 * Creates gateway connections on request
 *
 * @author bratseth
 */
public interface GatewayConnectionFactory {

    GatewayConnection newConnection();

}