dart-archive/stream_channel
双向通信通道的抽象
- Stars
- 49
- Forks
- 17
- 最近推送(UTC)
- 2025年2月1日
- 项目状态
- 已归档
使用的依赖
原始 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.