Fabcoin Core  0.16.2
P2P Digital Currency
Public Types | Public Member Functions | Private Member Functions | Private Attributes | List of all members
CScheduler Class Reference

#include <scheduler.h>

Public Types

typedef std::function< void(void)> Function
 

Public Member Functions

 CScheduler ()
 
 ~CScheduler ()
 
void schedule (Function f, boost::chrono::system_clock::time_point t=boost::chrono::system_clock::now())
 
void scheduleFromNow (Function f, int64_t deltaMilliSeconds)
 
void scheduleEvery (Function f, int64_t deltaMilliSeconds)
 
void serviceQueue ()
 
void stop (bool drain=false)
 
size_t getQueueInfo (boost::chrono::system_clock::time_point &first, boost::chrono::system_clock::time_point &last) const
 
bool AreThreadsServicingQueue () const
 

Private Member Functions

bool shouldStop ()
 

Private Attributes

std::multimap< boost::chrono::system_clock::time_point, FunctiontaskQueue
 
boost::condition_variable newTaskScheduled
 
boost::mutex newTaskMutex
 
int nThreadsServicingQueue
 
bool stopRequested
 
bool stopWhenEmpty
 

Detailed Description

Definition at line 37 of file scheduler.h.

Member Typedef Documentation

typedef std::function<void(void)> CScheduler::Function

Definition at line 43 of file scheduler.h.

Constructor & Destructor Documentation

CScheduler::CScheduler ( )

Definition at line 14 of file scheduler.cpp.

CScheduler::~CScheduler ( )

Definition at line 18 of file scheduler.cpp.

Here is the call graph for this function:

Member Function Documentation

bool CScheduler::AreThreadsServicingQueue ( ) const

Definition at line 143 of file scheduler.cpp.

size_t CScheduler::getQueueInfo ( boost::chrono::system_clock::time_point &  first,
boost::chrono::system_clock::time_point &  last 
) const

Definition at line 131 of file scheduler.cpp.

void CScheduler::schedule ( CScheduler::Function  f,
boost::chrono::system_clock::time_point  t = boost::chrono::system_clock::now() 
)

Definition at line 106 of file scheduler.cpp.

Here is the caller graph for this function:

void CScheduler::scheduleEvery ( CScheduler::Function  f,
int64_t  deltaMilliSeconds 
)

Definition at line 126 of file scheduler.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

void CScheduler::scheduleFromNow ( CScheduler::Function  f,
int64_t  deltaMilliSeconds 
)

Definition at line 115 of file scheduler.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

void CScheduler::serviceQueue ( )

Definition at line 33 of file scheduler.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

bool CScheduler::shouldStop ( )
inlineprivate

Definition at line 84 of file scheduler.h.

Here is the caller graph for this function:

void CScheduler::stop ( bool  drain = false)

Definition at line 94 of file scheduler.cpp.

Member Data Documentation

boost::mutex CScheduler::newTaskMutex
mutableprivate

Definition at line 80 of file scheduler.h.

boost::condition_variable CScheduler::newTaskScheduled
private

Definition at line 79 of file scheduler.h.

int CScheduler::nThreadsServicingQueue
private

Definition at line 81 of file scheduler.h.

bool CScheduler::stopRequested
private

Definition at line 82 of file scheduler.h.

bool CScheduler::stopWhenEmpty
private

Definition at line 83 of file scheduler.h.

std::multimap<boost::chrono::system_clock::time_point, Function> CScheduler::taskQueue
private

Definition at line 78 of file scheduler.h.


The documentation for this class was generated from the following files: