Add missing RequestQueue doc

This commit is contained in:
sapier 2013-11-13 21:49:50 +01:00 committed by kwolekr
parent dc407e219f
commit eadc943159
1 changed files with 7 additions and 0 deletions

View File

@ -150,6 +150,13 @@ public:
std::list<CallerInfo<Caller, CallerData, Key, T> > callers;
};
/**
* Notes for RequestQueue usage
* @param Key unique key to identify a request for a specific resource
* @param T ?
* @param Caller unique id of calling thread
* @param CallerData data passed back to caller
*/
template<typename Key, typename T, typename Caller, typename CallerData>
class RequestQueue
{