mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Per XLS-0095, we are taking steps to rename ripple(d) to xrpl(d). This change specifically removes all copyright notices referencing Ripple, XRPLF, and certain affiliated contributors upon mutual agreement, so the notice in the LICENSE.md file applies throughout. Copyright notices referencing external contributions remain as-is. Duplicate verbiage is also removed.
25 lines
389 B
C++
25 lines
389 B
C++
#include <xrpl/nodestore/DummyScheduler.h>
|
|
|
|
namespace ripple {
|
|
namespace NodeStore {
|
|
|
|
void
|
|
DummyScheduler::scheduleTask(Task& task)
|
|
{
|
|
// Invoke the task synchronously.
|
|
task.performScheduledTask();
|
|
}
|
|
|
|
void
|
|
DummyScheduler::onFetch(FetchReport const& report)
|
|
{
|
|
}
|
|
|
|
void
|
|
DummyScheduler::onBatchWrite(BatchWriteReport const& report)
|
|
{
|
|
}
|
|
|
|
} // namespace NodeStore
|
|
} // namespace ripple
|