aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/flushengine/flush_engine_explorer.h
blob: 0658ba450e3c68f4ffa276f548ce5d7d4749cfd0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include <vespa/vespalib/net/http/state_explorer.h>

namespace proton {

class FlushEngine;

/**
 * Class used to explore the state of a flush engine and its flush targets.
 */
class FlushEngineExplorer : public vespalib::StateExplorer
{
private:
    const FlushEngine &_engine;

public:
    FlushEngineExplorer(const FlushEngine &engine);

    void get_state(const vespalib::slime::Inserter &inserter, bool full) const override;
};

} // namespace proton