aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/dispatch/searchcluster/PongHandler.java
blob: e9f4f49833f5c2bbdb8c98e5063b173301db4602 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.dispatch.searchcluster;

import com.yahoo.prelude.Pong;

/**
 * Handle the Pong result of a Ping.
 *
 * @author baldersheim
 */
public interface PongHandler {

    void handle(Pong pong);

}