aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storageframework/generic/status/statusreportermap.h
blob: 2388dc0e97748e70adf736112479a2a6deafb096 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
/**
 * \class storage::framework::StatusReporterMap
 * \ingroup status
 *
 * \brief Interface to access the various status reporters
 */
#pragma once

#include <vector>

namespace storage::framework {

struct StatusReporter;

struct StatusReporterMap {
    virtual ~StatusReporterMap() = default;

    virtual const StatusReporter* getStatusReporter(vespalib::stringref id) = 0;

    virtual std::vector<const StatusReporter*> getStatusReporters() = 0;
};

} // storage::framework