| Crates.io | flnode |
| lib.rs | flnode |
| version | 0.9.2 |
| created_at | 2022-10-26 07:02:38.081984+00 |
| updated_at | 2025-03-17 06:01:42.280084+00 |
| description | Glue code for flmodules |
| homepage | https://fledg.re |
| repository | https://github.com/ineiti/fledger |
| max_upload_size | |
| id | 697606 |
| size | 115,869 |
This directory holds the logic for a Fledger Node.
The Node structure sets up the different modules from
flmodules and connects them with each other.
It also creates a NodeData structure that collects
the different statistics from the modules.
In order for NodeData to have the latest statistics
from the modules, it uses the Update messages from
the modules:
on every Update message, the new statistics is copied
to the NodeData structure.
This is done by adding a tap to the corresponding
module-broker, and then going through all messages
to find Updates.
The advantage of this is to have a structure that does
not need to be protected by a Mutex.