Repo created

This commit is contained in:
Fr4nz D13trich 2025-11-22 13:58:55 +01:00
parent 4af19165ec
commit 68073add76
12458 changed files with 12350765 additions and 2 deletions

View file

@ -0,0 +1,32 @@
#pragma once
#include "base/thread_checker.hpp"
#include <functional>
#include <queue>
namespace storage
{
// This class can be used in tests to mimic asynchronious calls. For
// example, when task A invokes task B and passes a callback C as an
// argument to B, it's silly for B to call C directly if B is an
// asynchronious task. So, the solution is to post C on the same
// message loop where B is run.
//
// *NOTE*, this class is not thread-safe.
class TaskRunner
{
public:
using TTask = std::function<void()>;
~TaskRunner();
void Run();
void PostTask(TTask const & task);
private:
std::queue<TTask> m_tasks;
ThreadChecker m_checker;
};
} // namespace storage