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.