D devpialkt Member Licensed User Longtime User Jun 8, 2017 #1 Hi all, is there a sample or link code to check if the websocket client is connected, refused, or disconnected with "Resumable Wait For"? Ty
Hi all, is there a sample or link code to check if the websocket client is connected, refused, or disconnected with "Resumable Wait For"? Ty
Erel B4X founder Staff member Licensed User Longtime User Jun 8, 2017 #2 You can wait for the connected event: B4X: ws.Connect(Url) Wait For ws_Connected Log("connected here") You will still need to handle the Close event in a different sub. Upvote 0
You can wait for the connected event: B4X: ws.Connect(Url) Wait For ws_Connected Log("connected here") You will still need to handle the Close event in a different sub.