rippled
Loading...
Searching...
No Matches
Task.h
1#ifndef XRPL_NODESTORE_TASK_H_INCLUDED
2#define XRPL_NODESTORE_TASK_H_INCLUDED
3
4namespace ripple {
5namespace NodeStore {
6
8struct Task
9{
10 virtual ~Task() = default;
11
15 virtual void
17};
18
19} // namespace NodeStore
20} // namespace ripple
21
22#endif
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Definition algorithm.h:6
Derived classes perform scheduled tasks.
Definition Task.h:9
virtual void performScheduledTask()=0
Performs the task.
virtual ~Task()=default