aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/server/iheartbeathandler.h
blob: e069e7cbb0294e0942ea216dd7d02ad31406a065 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Yahoo. 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