wamp_client 0.6.0 copy "wamp_client: ^0.6.0" to clipboard
wamp_client: ^0.6.0 copied to clipboard

A library for WAMP protocol client. WAMP is the Web Application Messaging Protocol (https://wamp-proto.org)

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.

2
likes
120
pub points
44%
popularity

Publisher

verified publisherkkazuo.com

A library for WAMP protocol client. WAMP is the Web Application Messaging Protocol (https://wamp-proto.org)

Repository (GitHub)
View/report issues

Documentation

API reference

License

ISC (LICENSE)

Dependencies

crypto

More

Packages that depend on wamp_client