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

}