Play-/Source/MailBox.h
2024-05-27 18:18:15 -04:00

45 lines
909 B
C++

#pragma once
#include <functional>
#include <deque>
#include <mutex>
#include <condition_variable>
#include <future>
class CMailBox
{
public:
virtual ~CMailBox() = default;
typedef std::function<void()> FunctionType;
void SendCall(const FunctionType&, bool = false);
void SendCall(FunctionType&&);
void FlushCalls();
bool IsPending() const;
void ReceiveCall();
void WaitForCall();
void WaitForCall(unsigned int);
private:
struct MESSAGE
{
MESSAGE() = default;
MESSAGE(MESSAGE&&) = default;
MESSAGE(const MESSAGE&) = delete;
MESSAGE& operator=(MESSAGE&&) = default;
MESSAGE& operator=(const MESSAGE&) = delete;
FunctionType function;
std::unique_ptr<std::promise<void>> promise;
};
typedef std::deque<MESSAGE> FunctionCallQueue;
FunctionCallQueue m_calls;
std::mutex m_callMutex;
std::condition_variable m_waitCondition;
};