summaryrefslogtreecommitdiff
path: root/src/mbgl/util/work_queue.cpp
Commit message (Collapse)AuthorAgeFilesLines
* [core] Unify FileRequest and WorkRequestJohn Firebaugh2016-03-241-1/+1
|
* [core] add namespace comment to closing braceKonstantin Käfer2015-12-031-2/+2
|
* [core] Expose fewer RunLoop implementation details in headerJohn Firebaugh2015-12-011-1/+2
|
* Introduce the WorkQueueThiago Marcos P. Santos2015-07-161-0/+37
The WorkQueue allow other threads to submit tasks to be executed in the thread that the WorkQueue lives on. The WorkQueue will cancel all the pending tasks when it gets destructed, to make sure the tasks won't get called with invalid references.