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.