Emit a reply in the client output buffer by formatting a Stream ID * in the standard - format, using the simple string protocol * of REPL. */
| 1348 | * in the standard <ms>-<seq> format, using the simple string protocol |
| 1349 | * of REPL. */ |
| 1350 | void addReplyStreamID(client *c, streamID *id) { |
| 1351 | sds replyid = sdscatfmt(sdsempty(),"%U-%U",id->ms,id->seq); |
| 1352 | addReplyBulkSds(c,replyid); |
| 1353 | } |
| 1354 | |
| 1355 | void setDeferredReplyStreamID(client *c, void *dr, streamID *id) { |
| 1356 | sds replyid = sdscatfmt(sdsempty(),"%U-%U",id->ms,id->seq); |
no test coverage detected