Last active
February 6, 2022 05:30
-
-
Save rueian/0fb03fd3bc9118b6d577f2b7f8fb7ba4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| type PipeliningQueue interface { | |
| EnqueueRequest(req request) response | |
| NextRequestToSend() (req request, ok bool) | |
| ReplyToNextRequest(resp response) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment