MCPcopy Create free account

hub / github.com/Benestar/rust-chord / types & classes

Types & classes32 in github.com/Benestar/rust-chord

↓ 4 callersClassIdentifier
src/routing/identifier.rs:27
↓ 3 callersClassDhtPut
src/message/api.rs:24
↓ 2 callersClassStorageFailure
src/message/p2p.rs:63
↓ 1 callersClassDhtFailure
src/message/api.rs:57
↓ 1 callersClassDhtGet
src/message/api.rs:38
↓ 1 callersClassDhtSuccess
src/message/api.rs:47
↓ 1 callersClassPeerFind
src/message/p2p.rs:73
↓ 1 callersClassPeerFound
src/message/p2p.rs:84
↓ 1 callersClassPredecessorNotify
src/message/p2p.rs:93
↓ 1 callersClassPredecessorReply
src/message/p2p.rs:102
↓ 1 callersClassStorageGet
src/message/p2p.rs:16
↓ 1 callersClassStorageGetSuccess
src/message/p2p.rs:39
↓ 1 callersClassStoragePut
src/message/p2p.rs:27
↓ 1 callersClassStoragePutSuccess
src/message/p2p.rs:52
ClassApiHandler
Handler for api requests The supported incoming api messages are `DHT GET` and `DHT PUT`.
src/handler/api.rs:18
ClassBootstrap
Basic information needed to connect to the network using a bootstrap peer
src/stabilization.rs:16
ClassConfig
src/config.rs:6
ClassConnection
A connection between two peers to send Message objects via TCP # Examples ```no_run # use chord::network::Connection; # let mut con = Connection::op
src/network.rs:35
ClassIdentifierValue
src/routing/identifier.rs:189
InterfaceIdentify
Trait to obtain an identifier from a data structure
src/routing/identifier.rs:148
ClassKey
src/storage.rs:4
EnumMessage
src/message/mod.rs:49
ClassMessageError
src/error.rs:21
InterfaceMessagePayload
src/message/mod.rs:263
ClassOpt
src/bin/dht.rs:20
ClassOpt
src/bin/api.rs:21
ClassP2PHandler
Handler for peer-to-peer requests The supported incoming peer-to-peer messages are `STORAGE GET`, `STORAGE PUT`, `PEER FIND`, `PREDECESSOR GET` and `
src/handler/p2p.rs:20
ClassProcedures
src/procedures.rs:11
ClassRouting
src/routing/mod.rs:28
ClassServer
A multithreaded server waiting for connections # Examples ```no_run # use chord::network::*; # use std::io; # # struct TestHandler; # impl ServerHan
src/network.rs:213
InterfaceServerHandler
A trait to handle incoming requests from a [`Server`]. The methods [`handle_connection`] and [`handle_error`] are called based on the success of the
src/network.rs:152
ClassStabilization
Stabilize the [`Routing`] table in regular intervals [`Routing`]: ../routing/struct.Routing.html
src/stabilization.rs:60