Home | History | Annotate | Download | only in utils

Lines Matching refs:WorkerThread

17 #define LOG_TAG "WorkerThread"
20 #include <broadcastradio-utils/WorkerThread.h>
35 bool operator<(const WorkerThread::Task& lhs, const WorkerThread::Task& rhs) {
39 WorkerThread::WorkerThread() : mIsTerminating(false), mThread(&WorkerThread::threadLoop, this) {}
41 WorkerThread::~WorkerThread() {
51 void WorkerThread::schedule(function<void()> task, milliseconds delay) {
61 void WorkerThread::cancelAll() {
68 void WorkerThread::threadLoop() {