From f2ae32b01d97dc51942211b9bc335cd2ae5ae78b Mon Sep 17 00:00:00 2001 From: Erik Little Date: Sun, 12 Nov 2017 11:32:12 -0500 Subject: [PATCH] Add note about namespace methods --- Usage Docs/12to13.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Usage Docs/12to13.md b/Usage Docs/12to13.md index 96bf568..740ab62 100644 --- a/Usage Docs/12to13.md +++ b/Usage Docs/12to13.md @@ -47,6 +47,10 @@ to the manager. - `SocketIOClient`s no longer take a configuration, they are shared from the manager. +- The `joinNamespace()` and `leaveNamespace()` methods on `SocketIOClient` no longer take any arguments, and in most cases +no longer need to be called. Namespace joining/leaving can be managed by calling `connect()`/`disconnect()` on the socket +associated with that namespace. + ---------- # What things should I know?