You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 5, 2020. It is now read-only.
type RetryInfo
= NoRetry -- Will not attempt to re-establish the connection
| RetryIn Int -- Will attempt to re-establish the connection in the specified number of seconds
type alias ConnectionClosedHandler msg
= String -- Connection URI
-> Int -- CloseEvent code
-> RetryInfo -- Retry information
-> msg
connectionClosed : ConnectionClosedHandler -> Sub msg
connectionOpened : (String -> msg) -> Sub msg
I wouldn't mind taking a stab at implementing this, assuming I can get some feedback on the proposed API.
shmish111, rspi, nmcclain, jzarzeckis, kwrooijen and 9 more