From f5129b68825dbf7d3cefa29f9fd33b9e6458ef6f Mon Sep 17 00:00:00 2001 From: Tobe O Date: Thu, 15 Nov 2018 12:42:41 -0500 Subject: [PATCH] readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d9302337..83ad914b 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Easily synchronize and scale WebSockets using package:pub_sub. # Usage -This package exposes `PubSubWebSocketSynchronizer`, which +This package exposes `PubSubSynchronizationChannel`, which can simply be dropped into any `AngelWebSocket` constructor. Once you've set that up, instances of your application will @@ -14,7 +14,7 @@ to scale a real-time application with Angel! ```dart await app.configure(new AngelWebSocket( - synchronizer: new PubSubWebSocketSynchronizer( + synchronizationChannel: new PubSubSynchronizationChannel( new pub_sub.IsolateClient('', adapter.receivePort.sendPort), ), ));