Files
comaps/libs/drape_frontend/drape_notifier.hpp
Alexander Borsuk 76ffc99abd New cpp folder structure
Signed-off-by: Alexander Borsuk <me@alex.bio>
2025-08-14 20:52:04 +07:00

36 lines
910 B
C++

#pragma once
#include "drape_frontend/threads_commutator.hpp"
#include "drape/pointers.hpp"
#include "base/thread_pool_delayed.hpp"
#include <atomic>
#include <cstdint>
#include <functional>
namespace df
{
class DrapeNotifier
{
public:
static uint64_t constexpr kInvalidId = 0;
using Functor = std::function<void(uint64_t notifyId)>;
explicit DrapeNotifier(ref_ptr<ThreadsCommutator> commutator);
uint64_t Notify(ThreadsCommutator::ThreadName threadName,
base::DelayedThreadPool::Duration const & duration,
bool repeating, Functor && functor);
private:
void NotifyImpl(ThreadsCommutator::ThreadName threadName,
base::DelayedThreadPool::Duration const & duration, bool repeating,
uint64_t notifyId, Functor && functor);
ref_ptr<ThreadsCommutator> m_commutator;
std::atomic<uint64_t> m_counter;
};
} // namespace df