MCPcopy Create free account
hub / github.com/David-Haim/concurrencpp / operator()

Method operator()

example/6_manual_executor/source/main.cpp:36–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34
35 struct dummy_task {
36 void operator()() const noexcept {
37 std::cout << "A dummy task is being executed on thread_id " << std::this_thread::get_id() << std::endl;
38 }
39 };
40
41 threads.emplace_back([manual_executor] {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected