Similar to the above function, but just creates an object, usually useful * for replication purposes to create arguments. */
| 1358 | /* Similar to the above function, but just creates an object, usually useful |
| 1359 | * for replication purposes to create arguments. */ |
| 1360 | robj *createObjectFromStreamID(streamID *id) { |
| 1361 | return createObject(OBJ_STRING, sdscatfmt(sdsempty(),"%U-%U", |
| 1362 | id->ms,id->seq)); |
| 1363 | } |
| 1364 | |
| 1365 | /* As a result of an explicit XCLAIM or XREADGROUP command, new entries |
| 1366 | * are created in the pending list of the stream and consumers. We need |
no test coverage detected