commit | c1f93d5b390bdda86bf6dfbfdc3744eee141f3fb | [log] [tgz] |
---|---|---|
author | Nate Bosch <nbosch1@gmail.com> | Thu Mar 28 09:48:58 2019 -0700 |
committer | GitHub <noreply@github.com> | Thu Mar 28 09:48:58 2019 -0700 |
tree | 368900ff03c614e11b5c0d07463a718722e4d49b | |
parent | 627edcf97d854e9ccdcd526e839ce867e92554a6 [diff] |
Remove StreamChannelTransformer.typed (#44) Closes #41 I cannot find any uses of this and it can be replaced with a call to `cast`.
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.