util::TaskRunnerInterface::insert

The callback can either be queued for later/asynchronous/threaded processing, or be executed immediately for synchronous processing.

Synopsis

Declared in <util/task_runner.h>

virtual
void
insert(std::function<void()> func) = 0;

Parameters

NameDescription
funcThe callback to schedule for processing.