rippled
Loading...
Searching...
No Matches
DummyScheduler.cpp
1#include <xrpl/nodestore/DummyScheduler.h>
2
3namespace ripple {
4namespace NodeStore {
5
6void
8{
9 // Invoke the task synchronously.
11}
12
13void
15{
16}
17
18void
22
23} // namespace NodeStore
24} // namespace ripple
void scheduleTask(Task &task) override
Schedules a task.
void onFetch(FetchReport const &report) override
Reports completion of a fetch Allows the scheduler to monitor the node store's performance.
void onBatchWrite(BatchWriteReport const &report) override
Reports the completion of a batch write Allows the scheduler to monitor the node store's performance.
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Definition algorithm.h:6
Contains information about a batch write operation.
Contains information about a fetch operation.
Derived classes perform scheduled tasks.
Definition Task.h:9
virtual void performScheduledTask()=0
Performs the task.