]> git.lizzy.rs Git - connect-rs.git/blob - README.md
renamed server to listener and add thorough documentation
[connect-rs.git] / README.md
1 # connect
2
3 This crate provides a distributed message queue abstraction over asynchronous network streams.
4
5 By using a message queue, crate users can focus on sending and receiving messages between clients instead of low-level networking and failure recovery.
6
7 ## Feature Status
8
9 | Feature                                               | Status        |
10 |-----------------------------------------------------  |--------       |
11 | [TCP Client](examples/tcp-client)                         |    ✓    |
12 | [TCP Server](examples/tcp-echo-server)                    |    ✓    |
13 | [TLS Client](examples/tls-client)                         |    ✓    |
14 | [TLS Server](examples/tls-echo-server)                    |    ✓    |
15 | SCTP Client                                           |               |
16 | SCTP Server                                           |               |
17 | DTLS-SCTP Client                                      |               |
18 | DTLS-SCTP Server                                      |               |
19
20
21 ## Why Protobuf?