summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/dispatch/searchcluster/PingFactory.java
blob: c9f722ef79b33f51be8989dd1042345b86fd7d16 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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);
}