# Does Channels Guarantee Message Delivery to Clients?

Under normal system operation all messages will be delivered to a connected client. We don't provide an absolute guarantee as a message delivery could be failed by many reasons. We continually test the live system on all clusters by continually publishing and receiving messages. We record the latency as well as any dropped messages, so we can ensure that the fraction of high latency/dropped messages is minuscule.

The most likely scenario for missing messages is when the client is temporarily disconnected (e.g. because of network issues). You can be notified of this by binding to the connected event - you could even make an ajax request to your app to fetch any missing messages when this happens. Please see <https://pusher.com/docs/channels/using_channels/connection#connection-states>

If you need a guarantee that you haven't missed a message in the stream, you should generate sequential ids for messages in your app and check in the client that they're arriving sequentially. Additionally, you can store the messages on your server, and the client can request any that were missed.

{% hint style="info" %}
Still have questions? Please reach out to our Support team by visiting [this page](https://messagebird.com/support-center/Pusher-request-new).
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.bird.com/pusher/channels/channels/events/does-channels-guarantee-message-delivery-to-clients.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
