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

/**
 * @author ollivir
 */
public interface PingFactory {

    Pinger createPinger(Node node, ClusterMonitor<Node> monitor, PongHandler pongHandler);

}