MCPcopy Create free account
hub / github.com/cinder/Cinder / dispatch

Method dispatch

include/asio/impl/executor.hpp:255–263  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

253
254template <typename Function, typename Allocator>
255void executor::dispatch(ASIO_MOVE_ARG(Function) f,
256 const Allocator& a) const
257{
258 impl_base* i = get_impl();
259 if (i->fast_dispatch_)
260 system_executor().dispatch(ASIO_MOVE_CAST(Function)(f), a);
261 else
262 i->dispatch(function(ASIO_MOVE_CAST(Function)(f), a));
263}
264
265template <typename Function, typename Allocator>
266void executor::post(ASIO_MOVE_ARG(Function) f,

Callers 4

dispatchMethod · 0.45
dispatchMethod · 0.45
operator()Method · 0.45
operator()Method · 0.45

Calls 1

get_implFunction · 0.85

Tested by

no test coverage detected