mirror of
https://github.com/XRPLF/rippled.git
synced 2026-07-24 15:40:26 +00:00
21 lines
320 B
C++
21 lines
320 B
C++
#pragma once
|
|
|
|
namespace xrpl::NodeStore {
|
|
|
|
/**
|
|
* Derived classes perform scheduled tasks.
|
|
*/
|
|
struct Task
|
|
{
|
|
virtual ~Task() = default;
|
|
|
|
/**
|
|
* Performs the task.
|
|
* The call may take place on a foreign thread.
|
|
*/
|
|
virtual void
|
|
performScheduledTask() = 0;
|
|
};
|
|
|
|
} // namespace xrpl::NodeStore
|