Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions hack/cmds/commands.json
Original file line number Diff line number Diff line change
Expand Up @@ -6938,6 +6938,51 @@
"since": "5.0.0",
"group": "stream"
},
"XCFGSET": {
"summary": "Sets the IDMP configuration parameters for a stream.",
"complexity": "O(1)",
"arguments": [
{
"name": "key",
"type": "key",
"key_spec_index": 0
},
{
"name": "idmp-duration-block",
"type": "block",
"optional": true,
"arguments": [
{
"name": "idmp-duration-token",
"type": "pure-token",
"token": "IDMP-DURATION"
},
{
"name": "duration",
"type": "integer"
}
]
},
{
"name": "idmp-maxsize-block",
"type": "block",
"optional": true,
"arguments": [
{
"name": "idmp-maxsize-token",
"type": "pure-token",
"token": "IDMP-MAXSIZE"
},
{
"name": "maxsize",
"type": "integer"
}
]
}
],
"since": "8.6.0",
"group": "stream"
},
"XDEL": {
"summary": "Removes the specified entries from the stream. Returns the number of items actually deleted, that may be different from the number of IDs passed in case certain IDs do not exist.",
"complexity": "O(1) for each single item to delete in the stream, regardless of the stream size.",
Expand Down
68 changes: 68 additions & 0 deletions internal/cmds/gen_stream.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 7 additions & 3 deletions internal/cmds/gen_stream_test.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading