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
if connected the server with browser, when close the tab in browser or just close the browser, that call-back function will trigger, what have i missed in all of this ? please help, struggled in this for weeks
The text was updated successfully, but these errors were encountered:
Hi, I find that :
(on :close ws
(lambda (&key code reason)
(declare (ignore code reason)
(format t "...a disconnected.%" ws))))
should be:
(on :close ws
(lambda (&key code reason)
(declare (ignore code reason))
(format t "...a disconnected.%" ws)))
You miss ")" in declcare context.
wish!
if connected the server with browser, when close the tab in browser or just close the browser, that call-back function will trigger, what have i missed in all of this ? please help, struggled in this for weeks
The text was updated successfully, but these errors were encountered: