![]() |
Feathercoin
0.5.0
P2P Digital Currency
|
Queue for verifications that have to be performed. More...
#include <checkqueue.h>
Public Member Functions | |
CCheckQueue (unsigned int nBatchSizeIn) | |
void | Thread () |
bool | Wait () |
void | Add (std::vector< T > &vChecks) |
~CCheckQueue () | |
Private Member Functions | |
bool | Loop (bool fMaster=false) |
Private Attributes | |
boost::mutex | mutex |
boost::condition_variable | condWorker |
boost::condition_variable | condMaster |
std::vector< T > | queue |
int | nIdle |
int | nTotal |
bool | fAllOk |
unsigned int | nTodo |
bool | fQuit |
unsigned int | nBatchSize |
Friends | |
class | CCheckQueueControl< T > |
Queue for verifications that have to be performed.
The verifications are represented by a type T, which must provide an operator(), returning a bool.
One thread (the master) is assumed to push batches of verifications onto the queue, where they are processed by N-1 worker threads. When the master is done adding work, it temporarily joins the worker pool as an N'th worker, until all jobs are done.
Definition at line 25 of file checkqueue.h.
|
inline |
Definition at line 122 of file checkqueue.h.
|
inline |
Definition at line 149 of file checkqueue.h.
|
inline |
Definition at line 136 of file checkqueue.h.
|
inlineprivate |
Definition at line 61 of file checkqueue.h.
|
inline |
Definition at line 126 of file checkqueue.h.
|
inline |
Definition at line 131 of file checkqueue.h.
|
friend |
Definition at line 152 of file checkqueue.h.
|
private |
Definition at line 34 of file checkqueue.h.
|
private |
Definition at line 31 of file checkqueue.h.
|
private |
Definition at line 47 of file checkqueue.h.
|
private |
Definition at line 55 of file checkqueue.h.
|
private |
Definition at line 28 of file checkqueue.h.
|
private |
Definition at line 58 of file checkqueue.h.
|
private |
Definition at line 41 of file checkqueue.h.
|
private |
Definition at line 52 of file checkqueue.h.
|
private |
Definition at line 44 of file checkqueue.h.
|
private |
Definition at line 38 of file checkqueue.h.