mrdocs::ExecutorGroup::async

Submit work to be executed.

Synopsis

template<
    class F,
    class... Args>
void
async(
    F&& f,
    Args&&... args);

Description

The function object must have this equivalent signature:

void( Agent&, Args... );

Parameters

Name

Description

f

The function to invoke.

args

Zero or more arguments to forward to the function.

Created with MrDocs