Files
darkfi/bin
lunar-mining 53f9ba6b2c dnetview: major refactor of Model/ underlying data structure
we create 3 types of info objects, NodeInfo, ConnectInfo, and
SessionInfo. NodeInfo is the parent and ConnectInfo and SessionInfo are children.

These info objects are passed into an enum:

enum SelectableObject {
    Node(NodeId)
    Session(SessionId)
    Connect(ConnectId)
}

We protect this data using mutexes and write it to a hashmap:

Mutex<FxHashMap<u32, SelectableObject>

View has not yet been updated with this new design.
2022-04-19 11:41:40 +02:00
..
2022-03-28 19:59:38 +02:00
2022-03-28 19:59:38 +02:00
2022-04-09 17:39:00 +02:00
2022-03-28 19:59:38 +02:00
2022-03-28 19:59:38 +02:00
2022-03-28 19:59:38 +02:00
2022-04-03 22:42:23 +02:00