# Events Store Examples (/sdks/cpp/how-to/events-store)



Persistent event messaging examples covering replay, time-based subscriptions, and streaming.

<Cards>
  <Card title="Persistent Pub/Sub" href="/sdks/cpp/tutorials/persistent-pubsub">
    Basic persistent event publish and subscribe
  </Card>

  <Card title="Cancel Subscription" href="/sdks/cpp/how-to/events-store/cancel-subscription">
    Cancel an active event store subscription
  </Card>

  <Card title="Consumer Group" href="/sdks/cpp/how-to/events-store/consumer-group">
    Load-balanced persistent event delivery
  </Card>

  <Card title="Replay from Sequence" href="/sdks/cpp/how-to/events-store/replay-from-sequence">
    Replay events starting from a sequence number
  </Card>

  <Card title="Replay from Time" href="/sdks/cpp/how-to/events-store/replay-from-time">
    Replay events starting from a point in time
  </Card>

  <Card title="Start at Time Delta" href="/sdks/cpp/how-to/events-store/start-at-time-delta">
    Replay events from a relative time offset
  </Card>

  <Card title="Start from First" href="/sdks/cpp/how-to/events-store/start-from-first">
    Replay all events from the beginning
  </Card>

  <Card title="Start from Last" href="/sdks/cpp/how-to/events-store/start-from-last">
    Start from the most recent stored event
  </Card>

  <Card title="Start New Only" href="/sdks/cpp/how-to/events-store/start-new-only">
    Receive only new events after subscription
  </Card>

  <Card title="Stream Send" href="/sdks/cpp/how-to/events-store/stream-send">
    High-throughput persistent event publishing via streams
  </Card>
</Cards>
