Skip to content

Instantly share code, notes, and snippets.

@rueian
Last active February 6, 2022 05:30
Show Gist options
  • Save rueian/0fb03fd3bc9118b6d577f2b7f8fb7ba4 to your computer and use it in GitHub Desktop.
Save rueian/0fb03fd3bc9118b6d577f2b7f8fb7ba4 to your computer and use it in GitHub Desktop.
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