Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kkazuo/dart-wamp-client
A library for Dart WAMP client.
https://github.com/kkazuo/dart-wamp-client
dart wamp-protocol
Last synced: about 2 months ago
JSON representation
A library for Dart WAMP client.
- Host: GitHub
- URL: https://github.com/kkazuo/dart-wamp-client
- Owner: kkazuo
- License: isc
- Created: 2017-06-11T01:29:59.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2023-05-11T19:44:08.000Z (over 1 year ago)
- Last Synced: 2024-06-08T15:23:20.574Z (7 months ago)
- Topics: dart, wamp-protocol
- Language: Dart
- Size: 30.3 KB
- Stars: 8
- Watchers: 4
- Forks: 7
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# wamp_client
A library for Dart [WAMP] client.
## Usage
A simple usage example:
import 'package:wamp_client/wamp_client.dart';
main() async {
var wamp = new WampClient('your.realm1')
..onConnect = (c) {
c.subscribe('your.topic').then((sub) async {
await for (var event in sub) {
...
}
});
};await wamp.connect('ws://localhost:8080/ws');
}## Features and bugs
Please file feature requests and bugs at the [issue tracker][tracker].
[tracker]: https://github.com/kkazuo/dart-wamp-client/issues
[WAMP]: https://wamp-proto.org