tosc-rs / mgnp

MnemOS Global Networking Protocol
Creative Commons Attribution Share Alike 4.0 International
14 stars 1 forks source link

feat(callipe): add request/response protocol utils #34

Closed hawkw closed 8 months ago

hawkw commented 8 months ago

Depends on #35

This branch adds a quick initial implementation of utilities for implementing a request-response protocol where multiple requests can be in flight on one connection at the same time. Request/response pairs are correlated using sequence numbers, and a client wrapper that automatically dispatches responses to the appropriate request future is included.

Closes #25