commit | a5129ca44322a7024074ca38fb98e343dcb638c7 | [log] [tgz] |
---|---|---|
author | Nate Bosch <nbosch@google.com> | Wed Sep 21 12:31:46 2022 -0700 |
committer | GitHub <noreply@github.com> | Wed Sep 21 12:31:46 2022 -0700 |
tree | 0f7adf850c57326e75c7c8f04ccd3e620de19005 | |
parent | 63831cb74c5a413da893bda0fa4a80b5cb567076 [diff] |
Prepare to publish (#81) Drop changelog entry for non-user-facing change. Drop `-dev` suffix from version.
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.