summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/dispatch/searchcluster/PingFactory.java
blob: 285a1fcd57e4700c28a844896b8ec652faf7048f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package com.yahoo.search.dispatch.searchcluster;

import com.yahoo.prelude.Pong;
import com.yahoo.search.cluster.ClusterMonitor;

import java.util.concurrent.Callable;

public interface PingFactory {

    Callable<Pong> createPinger(Node node, ClusterMonitor<Node> monitor);

}