events.iterate.com

Event type

events.iterate.com/stream/subscription-cursor-set

Operator/agent verb: THE seek — explicitly moves a push subscription's cursor (exclusive afterOffset semantics: 0 replays everything). The audited form of replay — the cursor row itself is storage, but moving it deliberately is a fact. For a parked subscription, follow with `subscription-resumed` to restart delivery.

Payload schema

subscriptionKeystring
afterOffsetinteger
Raw JSON schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "subscriptionKey": {
      "type": "string",
      "minLength": 1
    },
    "afterOffset": {
      "type": "integer",
      "minimum": 0,
      "maximum": 9007199254740991
    }
  },
  "required": [
    "subscriptionKey",
    "afterOffset"
  ]
}