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



Persistent event publishing, subscribing, and replay examples.

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

  <Card title="Cancel Subscription" href="/sdks/elixir/how-to/events-store/cancel-subscription">
    Cancel an Events Store subscription
  </Card>

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

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

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

  <Card title="Start at Time Delta" href="/sdks/elixir/how-to/events-store/start-at-time-delta">
    Replay events from N milliseconds ago
  </Card>

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

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

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

  <Card title="Stream Send" href="/sdks/elixir/how-to/events-store/stream-send">
    Efficient batch sending to the event store
  </Card>
</Cards>
