rippled
Loading...
Searching...
No Matches
Task.h
1#pragma once
2
3namespace xrpl {
4namespace NodeStore {
5
7struct Task
8{
9 virtual ~Task() = default;
10
14 virtual void
16};
17
18} // namespace NodeStore
19} // namespace xrpl
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Definition algorithm.h:5
Derived classes perform scheduled tasks.
Definition Task.h:8
virtual ~Task()=default
virtual void performScheduledTask()=0
Performs the task.