rename PIBlockingDequeue -> PIBlockingQueue
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
#ifndef PITHREADPOOLEXECUTOR_H
|
||||
#define PITHREADPOOLEXECUTOR_H
|
||||
|
||||
#include "piblockingdequeue.h"
|
||||
#include "piblockingqueue.h"
|
||||
#include <atomic>
|
||||
|
||||
|
||||
@@ -54,7 +54,7 @@ public:
|
||||
|
||||
private:
|
||||
std::atomic_bool isShutdown_;
|
||||
PIBlockingDequeue<std::function<void()> > taskQueue;
|
||||
PIBlockingQueue<std::function<void()> > taskQueue;
|
||||
PIVector<PIThread*> threadPool;
|
||||
bool queue_own;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user