I usually use WebSocket client as below code. ``` cpp websocket_client client; client.connect("server").wait(); ``` In this case, how can I figuring out connect was success or not? One of my clue is task_status, but it seems like complete of requested job. Thanks.