diff options
Diffstat (limited to 'src/utility.h')
-rw-r--r-- | src/utility.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/utility.h b/src/utility.h index 89c5f9981..3640b4b51 100644 --- a/src/utility.h +++ b/src/utility.h @@ -1467,6 +1467,10 @@ protected: core::list<T> m_list; }; +/* + A single worker thread - multiple client threads queue framework. +*/ + template<typename Caller, typename Data> class CallerInfo { @@ -1516,11 +1520,6 @@ public: core::list<CallerInfo<Caller, CallerData> > callers; }; -/* - Quickhands for typical request-result queues. - Used for distributing work between threads. -*/ - template<typename Key, typename T, typename Caller, typename CallerData> class RequestQueue { |