Decentralised Art Server
High-performance C++ backend that exposes HTML interface and a secure REST API for managing Performative Transactions entities
 
Loading...
Searching...
No Matches
events_archive.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <cstddef>
4#include <cstdint>
5
6namespace dcn::events
7{
9 {
10 public:
11 virtual ~IArchiveManager() = default;
12 virtual bool runCycle(int chain_id, std::size_t hot_window_days, std::int64_t now_ms) = 0;
13 };
14}
Definition events_archive.hpp:9
virtual bool runCycle(int chain_id, std::size_t hot_window_days, std::int64_t now_ms)=0
virtual ~IArchiveManager()=default
Definition decoded_event.hpp:11