web_socket_channel 1.0.10 copy "web_socket_channel: ^1.0.10" to clipboard
web_socket_channel: ^1.0.10 copied to clipboard

outdated

StreamChannel wrappers for WebSockets. This package provides a cross-platform WebSocketChannel API, a cross-platform implementation of that API that communicates over an underlying StreamChannel, IOWe [...]

example/example.dart

// Copyright (c) 2018, 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:web_socket_channel/io.dart';
import 'package:web_socket_channel/status.dart' as status;

void main() async {
  final channel = await IOWebSocketChannel.connect("ws://localhost:1234");

  channel.stream.listen((message) {
    channel.sink.add("received!");
    channel.sink.close(status.goingAway);
  });
}
1237
likes
0
pub points
100%
popularity

Publisher

verified publishertools.dart.dev

StreamChannel wrappers for WebSockets. This package provides a cross-platform WebSocketChannel API, a cross-platform implementation of that API that communicates over an underlying StreamChannel, IOWebSocketChannel that wraps dart:io's WebSocket class, and a HtmlWebSocketChannel that wrap's dart:html's.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

async, crypto, stream_channel

More

Packages that depend on web_socket_channel