Bitcoin Core 28.99.0
P2P Digital Currency
|
#include <task_runner.h>
Public Member Functions | |
void | insert (std::function< void()> func) override |
The callback can either be queued for later/asynchronous/threaded processing, or be executed immediately for synchronous processing. More... | |
void | flush () override |
Forces the processing of all pending events. More... | |
size_t | size () override |
Returns the number of currently pending events. More... | |
Public Member Functions inherited from util::TaskRunnerInterface | |
virtual | ~TaskRunnerInterface ()=default |
virtual void | insert (std::function< void()> func)=0 |
The callback can either be queued for later/asynchronous/threaded processing, or be executed immediately for synchronous processing. More... | |
virtual void | flush ()=0 |
Forces the processing of all pending events. More... | |
virtual size_t | size ()=0 |
Returns the number of currently pending events. More... | |
Definition at line 42 of file task_runner.h.
|
inlineoverridevirtual |
Forces the processing of all pending events.
Implements util::TaskRunnerInterface.
Definition at line 46 of file task_runner.h.
|
inlineoverridevirtual |
The callback can either be queued for later/asynchronous/threaded processing, or be executed immediately for synchronous processing.
Implements util::TaskRunnerInterface.
Definition at line 45 of file task_runner.h.
|
inlineoverridevirtual |
Returns the number of currently pending events.
Implements util::TaskRunnerInterface.
Definition at line 47 of file task_runner.h.