#ifndef BLISSFUL_MONITOR_HH #define BLISSFUL_MONITOR_HH #include "monitor.hh" /** * A monitor that will try to hide problems, like never finished requests * or jobs and things like that. */ class BlissfulMonitor : public Monitor { public: static std::unique_ptr create(std::shared_ptr const& looper, std::unique_ptr&& monitor); }; #endif // BLISSFUL_MONITOR_HH