FLUTTER ECOSYSTEM

dart-archive/stream_channel

双向通信通道的抽象

stream_channel 项目封面
Stars
49
Forks
17
最近推送(UTC)
2025年2月1日
项目状态
已归档
Dart Archive GitHub avatar
GITHUB Organization

Dart Archive ↗

Legacy projects kept around for posterity – See github.com/dart-lang for current work

语言Dart

使用的依赖

依赖清单 3 项
  • async^2.5.0
  • dart_flutter_team_lints开发依赖^3.0.0
  • test开发依赖^1.16.6

原始 README

以下为英文项目原文快照,最新内容请访问 GitHub。

展开 / 收起项目 README

[!IMPORTANT]
This repo has moved to https://github.com/dart-lang/tools/tree/main/pkgs/stream_channel

Dart CI pub package package publisher

This package exposes the StreamChannel interface, which represents a two-way communication channel. Each StreamChannel exposes a Stream for receiving data and a StreamSink for sending it.

StreamChannel helps abstract communication logic away from the underlying protocol. For example, the test package re-uses its test suite communication protocol for both WebSocket connections to browser suites and Isolate connections to VM tests.

This package also contains utilities for dealing with StreamChannels and with two-way communications in general. For documentation of these utilities, see the API docs.