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
The Java client does support multiplexing: this allows to split the logic of your application into distinct modules, while using one single WebSocket connection to the server.
482
+
483
+
Reference: https://socket.io/docs/v4/namespaces/
484
+
485
+
```java
486
+
Socket socket =IO.socket(URI.create("https://example.com")); // the main namespace
487
+
Socket productSocket =IO.socket(URI.create("https://example.com/product")); // the "product" namespace
488
+
Socket orderSocket =IO.socket(URI.create("https://example.com/order")); // the "order" namespace
0 commit comments