dart_mercure 0.1.0 copy "dart_mercure: ^0.1.0" to clipboard
dart_mercure: ^0.1.0 copied to clipboard

outdated

A library to communicate with dunglas/mercure

example/dart_mercure_example.dart

import 'package:dart_mercure/dart_mercure.dart';

main() {

  // Token generate with "mercure" JWT_KEY
  String token = "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJtZXJjdXJlIjp7InN1YnNjcmliZSI6WyIqIl0sInB1Ymxpc2giOlsiKiJdfX0.Gfj3BFrSOFhyFN0hPOYg-Pe4dfYWOKq7QJiMWYC2Z_k";
  String hub_url = "http://mercure/hub";
  String topic = "http://mercure/test";

  Mercure mercure = Mercure(token: token, hub_url: hub_url);
  mercure.subscribeTopics(topics: <String> [topic, "2"], onData: (Event event) {
    print(event.data);
  });

  mercure.subscribeTopic(topic: topic, onData: (Event event) {
    print(event.data);
  });

  mercure.publish(topic: topic, data: "DATA").then((status) {
    if(status == 200) {
      print("Message Sent");
    }
    else {
      print('Message Failed with code : $status');
    }
  });
}
7
likes
0
pub points
0%
popularity

Publisher

verified publisherwallforfry.fr

A library to communicate with dunglas/mercure

Repository (GitLab)
View/report issues

License

unknown (LICENSE)

Dependencies

eventsource, http, meta

More

Packages that depend on dart_mercure