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

outdated

A library to communicate with dunglas/mercure. This library allow publish/subscribe on Mercure Hub. Can be use to create firebase like notification system.

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. This library allow publish/subscribe on Mercure Hub. Can be use to create firebase like notification system.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

eventsource, http, meta

More

Packages that depend on dart_mercure