Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

goto-bus-stop/dart-event-source

Open more actions menu

Repository files navigation

w3c_event_source

pub package build status

W3C EventSource client implementation for Dart / Flutter.

This package depends on dart:io, so it is not usable on the Web. If you'd like to contribute a wrapper around dart:html's EventSource, feel free!

Install

Add to your pubspec.yaml:

dependencies:
  w3c_event_source: ^1.3.2

Usage

import 'dart:async';
import 'package:w3c_event_source/event_source.dart';

final events = EventSource(Uri.parse('http://api.example.com/ssedemo.php'));

// Listening on the `events` stream will open a connection.
final subscription = events.events.listen((MessageEvent message) {
  print('${message.name}: ${message.data}');
});

Timer(Duration(seconds: 30), () {
  // Canceling the subscription closes the connection.
  subscription.cancel();
});

License

MIT

About

W3C EventSource client implementation for Dart

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.