Say my network connection drops for a few seconds and I miss some SignalR server-pushed messages.
When I regain network connectivity are the messages I missed lost? or does signalR handle them and push them out when I reconnect?
If it can't handle missed messages, then what is the recommended approach for ensuring consistency?
- Periodically (2-3 mins) poll to check server-data?
- Somehow detect loss of network on the client side and do an ajax call to get the data on network restoration?
- something else?