Repo created
This commit is contained in:
parent
4af19165ec
commit
68073add76
12458 changed files with 12350765 additions and 2 deletions
32
libs/storage/storage_tests/task_runner.hpp
Normal file
32
libs/storage/storage_tests/task_runner.hpp
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue