commit | 31a3aba8a78a78b266fbf7474f19cd4ba9ca562e | [log] [tgz] |
---|---|---|
author | Moritz <mosum@google.com> | Fri Dec 20 14:31:49 2024 +0100 |
committer | GitHub <noreply@github.com> | Fri Dec 20 14:31:49 2024 +0100 |
tree | 1fb9f163dd5dbb0e5f29d719e4e5d8d2a662ce82 | |
parent | 71fe6dd315e7f451466da80f7af2661cd28aaaea [diff] |
Update README.md before archiving (#114)
[!IMPORTANT]
This repo has moved to https://github.com/dart-lang/tools/tree/main/pkgs/stream_channel
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 StreamChannel
s and with two-way communications in general. For documentation of these utilities, see the API docs.