aboutsummaryrefslogtreecommitdiff
path: root/src/scheduler.h
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2020-05-28 09:03:11 -0400
committerMarcoFalke <falke.marco@gmail.com>2020-05-28 19:28:43 -0400
commitfa3d41b5ab8fe62bc2e36c3e1211aace69e6da65 (patch)
tree01720b8b0cd82d6834bc2d44b335616806296f39 /src/scheduler.h
parentfac43f9889f500bcb62d830c030dec42fe791031 (diff)
downloadbitcoin-fa3d41b5ab8fe62bc2e36c3e1211aace69e6da65.tar.xz
doc: Switch scheduler to doxygen comments
Diffstat (limited to 'src/scheduler.h')
-rw-r--r--src/scheduler.h56
1 files changed, 31 insertions, 25 deletions
diff --git a/src/scheduler.h b/src/scheduler.h
index 63f20f1335..ffb2572f20 100644
--- a/src/scheduler.h
+++ b/src/scheduler.h
@@ -12,23 +12,23 @@
#include <sync.h>
-//
-// Simple class for background tasks that should be run
-// periodically or once "after a while"
-//
-// Usage:
-//
-// CScheduler* s = new CScheduler();
-// s->scheduleFromNow(doSomething, std::chrono::milliseconds{11}); // Assuming a: void doSomething() { }
-// s->scheduleFromNow([=] { this->func(argument); }, std::chrono::milliseconds{3});
-// std::thread* t = new std::thread([&] { s->serviceQueue(); });
-//
-// ... then at program shutdown, make sure to call stop() to clean up the thread(s) running serviceQueue:
-// s->stop();
-// t->join();
-// delete t;
-// delete s; // Must be done after thread is interrupted/joined.
-//
+/**
+ * Simple class for background tasks that should be run
+ * periodically or once "after a while"
+ *
+ * Usage:
+ *
+ * CScheduler* s = new CScheduler();
+ * s->scheduleFromNow(doSomething, std::chrono::milliseconds{11}); // Assuming a: void doSomething() { }
+ * s->scheduleFromNow([=] { this->func(argument); }, std::chrono::milliseconds{3});
+ * std::thread* t = new std::thread([&] { s->serviceQueue(); });
+ *
+ * ... then at program shutdown, make sure to call stop() to clean up the thread(s) running serviceQueue:
+ * s->stop();
+ * t->join();
+ * delete t;
+ * delete s; // Must be done after thread is interrupted/joined.
+ */
class CScheduler
{
public:
@@ -37,7 +37,7 @@ public:
typedef std::function<void()> Function;
- // Call func at/after time t
+ /** Call func at/after time t */
void schedule(Function f, std::chrono::system_clock::time_point t);
/** Call f once after the delta has passed */
@@ -61,8 +61,10 @@ public:
*/
void MockForward(std::chrono::seconds delta_seconds);
- // Services the queue 'forever'. Should be run in a thread,
- // and interrupted using boost::interrupt_thread
+ /**
+ * Services the queue 'forever'. Should be run in a thread,
+ * and interrupted using boost::interrupt_thread
+ */
void serviceQueue();
/** Tell any threads running serviceQueue to stop as soon as the current task is done */
@@ -78,12 +80,14 @@ public:
newTaskScheduled.notify_all();
}
- // Returns number of tasks waiting to be serviced,
- // and first and last task times
+ /**
+ * Returns number of tasks waiting to be serviced,
+ * and first and last task times
+ */
size_t getQueueInfo(std::chrono::system_clock::time_point &first,
std::chrono::system_clock::time_point &last) const;
- // Returns true if there are threads actively running in serviceQueue()
+ /** Returns true if there are threads actively running in serviceQueue() */
bool AreThreadsServicingQueue() const;
private:
@@ -128,8 +132,10 @@ public:
*/
void AddToProcessQueue(std::function<void ()> func);
- // Processes all remaining queue members on the calling thread, blocking until queue is empty
- // Must be called after the CScheduler has no remaining processing threads!
+ /**
+ * Processes all remaining queue members on the calling thread, blocking until queue is empty
+ * Must be called after the CScheduler has no remaining processing threads!
+ */
void EmptyQueue();
size_t CallbacksPending();