|
| template<typename TFunc = std::function<void()>, typename TLock = std::mutex, typename TCond = std::condition_variable> |
| using | embutil::DynamicDispatchQueue = DispatchQueue_Base< 0, 0, TFunc, TLock, TCond > |
| | Dispatch queue class supporting dynamic sizes and dynamic memory allocation. More...
|
| |
| template<const size_t TSize, const size_t TThreadCount = 1, typename TFunc = stdext::inplace_function<void()>, typename TLock = std::mutex, typename TCond = std::condition_variable> |
| using | embutil::StaticDispatchQueue = DispatchQueue_Base< TSize, TThreadCount, TFunc, TLock, TCond > |
| | Dispatch queue specializatoin using only static memory allocation. More...
|
| |