accumulator: add prototypes of service methods
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
surtur 2022-01-02 07:13:12 +01:00
parent f3a9ee0d91
commit 1a325193b0
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

View File

@ -53,6 +53,16 @@ public:
auto wait_for(uint milliseconds) -> void;
// spawns the entropy_collector_service and pools_service threads
auto accumulator_service() -> int;
// a long lived thread collecting entropy
// listens on a unix socket, receives events
auto entropy_collector_service() -> int;
auto pools_service() -> int;
Accumulator();
~Accumulator() noexcept;