swift-nio-extras
swift-nio-extras copied to clipboard
TaggedRequestResponseHandler
Motivation:
NIORequestResponseHandler
is great, for protocols where responses are in the same order as requests. Unfortunately, it doesn't work for protocols where responses may arrive out-of-order with regards to the order of the requests, such as NFS (#155).
Modifications:
- Add
NIOTaggedRequestResponseHandler
Result:
Ability to easily handle protocols with out-of-order responses.