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



Persistent pub/sub with replay, consumer groups, and time-based subscriptions.

[Events Store getting started →](/learn/events-store/getting-started)

<Cards>
  <Card title="Persistent Pub/Sub" href="/sdks/rust/tutorials/persistent-pubsub">
    Publish and subscribe to persistent events with replay
  </Card>

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

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

  <Card title="Replay from Sequence" href="/sdks/rust/how-to/events-store/replay-from-sequence">
    Start reading from a specific sequence number
  </Card>

  <Card title="Replay from Time" href="/sdks/rust/how-to/events-store/replay-from-time">
    Start reading from a specific wall-clock time
  </Card>

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

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

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

  <Card title="Start New Only" href="/sdks/rust/how-to/events-store/start-new-only">
    Receive only newly published events
  </Card>

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