aboutsummaryrefslogtreecommitdiffstats
path: root/config/src/main/java/com/yahoo/vespa/config/ConnectionPool.java
blob: efcb30213ad098aa73fa835dc4eeade255afca96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.config;

/**
 * @author hmusum
 */
public interface ConnectionPool extends AutoCloseable {

    void close();

    Connection getCurrent();

    /**
     * Switches to another (healthy, if possible) Connection instance. {@link #getCurrent()} will
     * return this instance afterwards, which is also the return value.
     *
     * @return a Connection
     */
    Connection switchConnection(Connection failingConnection);

    int getSize();

}