Files
rippled/include/xrpl/beast/insight/NullCollector.h
2026-07-13 10:40:40 +00:00

22 lines
334 B
C++

#pragma once
#include <xrpl/beast/insight/Collector.h>
#include <memory>
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