Files
rippled/include/xrpl/beast/insight/NullCollector.h
2026-04-21 15:32:51 +00:00

18 lines
310 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>
New();
};
} // namespace beast::insight