blob: afc1a49cd7c5742fc09b177edbc9d89133ef466a [file] [log] [blame]
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'package:sse/client/sse_client.dart';
/// A basic example which should be used in a browser that supports SSE.
void main() {
var channel = SseClient('/sseHandler');
channel.stream.listen((s) {
// Listen for messages and send the back.
channel.sink.add(s);
});
}