Signature
StringList ws_connections(String scope = "")
Parameters
scope : optional scope identifier, defaults to the current WebSocket page scope
return value : list of connection IDs currently connected to that scope
Returns the currently connected WebSocket client IDs for the given scope.
If scope is omitted, the current page scope is used.
Example
StringList ids = ws_connections();
print("active connections in this scope: ", ids.size(), "\n");
Output
active connections in this scope: 0