summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/dispatch/searchcluster/Pinger.java
blob: b4a7ccbf98ca4e22ffd40702fef344435e29753d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2020 Oath Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.dispatch.searchcluster;

/**
 * Send a ping and ensure that the pong is propagated to the ponghandler.
 * Should not wait as this should be done in parallel on all nodes.
 *
 * @author baldersheim
 */
public interface Pinger {
    void ping();
}