MCPcopy Create free account
hub / github.com/boostorg/asio / low_priority_handler

Class low_priority_handler

example/cpp11/invocation/prioritised_handlers.cpp:156–167  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

154}
155
156struct low_priority_handler
157{
158 // Make the handler a move-only type.
159 low_priority_handler() = default;
160 low_priority_handler(const low_priority_handler&) = delete;
161 low_priority_handler(low_priority_handler&&) = default;
162
163 void operator()()
164 {
165 std::cout << "Low priority handler\n";
166 }
167};
168
169int main()
170{

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected