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


public interface PingFactory {

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

}