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.