CG: Now XREADGROUP + blocking operations work.

This commit is contained in:
antirez
2018-01-26 11:57:19 +01:00
parent 5ad29325fe
commit b65fe09bb8
3 changed files with 42 additions and 8 deletions

View File

@ -94,5 +94,7 @@ void streamIteratorStart(streamIterator *si, stream *s, streamID *start, streamI
int streamIteratorGetID(streamIterator *si, streamID *id, int64_t *numfields);
void streamIteratorGetField(streamIterator *si, unsigned char **fieldptr, unsigned char **valueptr, int64_t *fieldlen, int64_t *valuelen);
void streamIteratorStop(streamIterator *si);
streamCG *streamLookupCG(stream *s, sds groupname);
streamConsumer *streamLookupConsumer(streamCG *cg, sds name);
#endif