Merge pull request #972 from go-redis/fix/streams-comment

Add Streams comment
This commit is contained in:
Vladimir Mihailenco 2019-02-19 16:30:15 +02:00 committed by GitHub
commit 73ef066b86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 4 deletions

View File

@ -1453,10 +1453,11 @@ func (c *cmdable) XGroupDelConsumer(stream, group, consumer string) *IntCmd {
type XReadGroupArgs struct { type XReadGroupArgs struct {
Group string Group string
Consumer string Consumer string
Streams []string // List of streams and ids.
Count int64 Streams []string
Block time.Duration Count int64
NoAck bool Block time.Duration
NoAck bool
} }
func (c *cmdable) XReadGroup(a *XReadGroupArgs) *XStreamSliceCmd { func (c *cmdable) XReadGroup(a *XReadGroupArgs) *XStreamSliceCmd {