aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/prelude/Ping.java
blob: 09367ac73079f7884de3aad30b0c974dfc641abc (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
24
25
26
27
28
29
30
31
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.prelude;

/**
 * A ping, typically to ask whether backend is alive.
 *
 * @author Steinar Knutsen
 */
public class Ping {

    /** How long to wait for a pong */
    private long timeout;

    public Ping() {
        this(500);
    }

    public Ping(long timeout) {
        this.timeout = timeout;
    }

    public long getTimeout() {
        return timeout;
    }

    @Override
    public String toString() {
        return "Ping(timeout = " + timeout + ")";
    }

}