commit | 0842485ee2be1c62e276d0e988aedc525bf29181 | [log] [tgz] |
---|---|---|
author | Natalie Weizenbaum <nweiz@google.com> | Wed Feb 10 22:26:24 2016 |
committer | Natalie Weizenbaum <nweiz@google.com> | Wed Feb 10 22:26:24 2016 |
tree | 062a13d1e442646c92cd2538b27fbfe745774dfc | |
parent | 1e1d3410a899da8e836b9b21a8a6b5609184fc70 [diff] |
Make MultiChannel follow the stream channel rules. It was written before the rules were fully fleshed-out, and I forgot to update it to comply. R=tjblasi@google.com Review URL: https://codereview.chromium.org//1686263002 .
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.