platform/README.md

21 lines
760 B
Markdown
Raw Normal View History

2017-08-08 20:08:37 +00:00
# sync
2017-08-08 21:04:36 +00:00
[![Pub](https://img.shields.io/pub/v/angel_sync.svg)](https://pub.dartlang.org/packages/angel_sync)
[![build status](https://travis-ci.org/angel-dart/sync.svg)](https://travis-ci.org/angel-dart/sync)
2017-08-08 20:08:37 +00:00
Easily synchronize and scale WebSockets using package:pub_sub.
2017-08-08 21:04:36 +00:00
# Usage
This package exposes `PubSubWebSocketSynchronizer`, which
can simply be dropped into any `AngelWebSocket` constructor.
Once you've set that up, instances of your application will
automatically fire events in-sync. That's all you have to do
to scale a real-time application with Angel!
```dart
await app.configure(new AngelWebSocket(
synchronizer: new PubSubWebSocketSynchronizer(
new pub_sub.IsolateClient('<client-id>', adapter.receivePort.sendPort),
),
));
```