FLUTTER ECOSYSTEM

dart-archive/stream_channel

双方向通信チャネルの抽象化

stream_channel のプロジェクト画像
Stars
49
Forks
17
最終プッシュ(UTC)
2025/02/01
プロジェクト状態
アーカイブ済み
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.