I'm pretty new to SignalR and I have a web-app that communicates with the server using this technology (which is very cool IMHO).
What I'd like to know is - is there any way to handle a timeout event using SingalR on the client side? is there a timeout event being fired that I can listen to on the client side?
When I get a timeout, I can see it in he log:
[12:56:47 GMT+0300 (Jerusalem Daylight Time)] SignalR: Keep alive has been missed, connection may be dead/slow.
[12:56:54 GMT+0300 (Jerusalem Daylight Time)] SignalR: Keep alive timed out. Notifying transport that connection has been lost.
Just to be clear I don't want to run my own timer and check whether a timeout occurred, I'm asking is there such an event that being fired in SignalR?
Thanks!