aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/dispatch/searchcluster/Pinger.java
blob: a4514969e5cd7e802562ef0a2a707e0268797417 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Yahoo. 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();

}