wamp_client

Creator: coderz1093

Last updated:

0 purchases

wamp_client Image
wamp_client Images
Add to Cart

Description:

wamp client

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');
}
copied to clipboard
Features and bugs #
Please file feature requests and bugs at the issue tracker.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.