mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-03 16:56:48 +00:00
18 lines
311 B
C++
18 lines
311 B
C++
#pragma once
|
|
|
|
#include <xrpl/beast/insight/Collector.h>
|
|
|
|
namespace beast::insight {
|
|
|
|
/** A Collector which does not collect metrics. */
|
|
class NullCollector : public Collector
|
|
{
|
|
public:
|
|
explicit NullCollector() = default;
|
|
|
|
static std::shared_ptr<Collector>
|
|
make();
|
|
};
|
|
|
|
} // namespace beast::insight
|