A library for Dart WAMP client.
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');
}
Please file feature requests and bugs at the issue tracker.