aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/server/iheartbeathandler.h
blob: 5c177eb0642152b4cf61bbbbf9a08535cedfbeb8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

namespace proton {

class IHeartBeatHandler
{
public:
    virtual void heartBeat() = 0;

    virtual ~IHeartBeatHandler() = default;
};

} // namespace proton