Don't let ledger fetching go too fast.

This commit is contained in:
JoelKatz
2013-03-12 15:17:26 -07:00
parent 0b52905cb7
commit e9a02882f1
4 changed files with 13 additions and 4 deletions

View File

@@ -103,8 +103,9 @@ public:
void addJob(JobType type, const std::string& name, const boost::function<void(Job&)>& job);
int getJobCount(JobType t); // Jobs at this priority
int getJobCountGE(JobType t); // All jobs at or greater than this priority
int getJobCount(JobType t); // Jobs waiting at this priority
int getJobCountTotal(JobType t); // Jobs waiting plus running at this priority
int getJobCountGE(JobType t); // All waiting jobs at or greater than this priority
std::vector< std::pair<JobType, std::pair<int, int> > > getJobCounts(); // jobs waiting, threads doing
void shutdown();