clue / reactphp-docker

Async, event-driven access to the Docker Engine API, built on top of ReactPHP.
https://clue.engineering/2019/introducing-reactphp-docker
MIT License
108 stars 16 forks source link

Improve streaming API #24

Closed clue closed 8 years ago

clue commented 9 years ago

Quite a few of the API endpoints take advantage of a streaming API.

We currently offer limited support for streaming incoming HTTP responses.

In the future, we should also look into streaming outgoing data even after having received the HTTP response header. This is relevant for attaching to read/write streams.

This depends on https://github.com/clue/php-buzz-react/issues/46.

clue commented 8 years ago

The improved readable streaming API has been implemented with #27.

In the future, we will also need to support sending streaming requests, see #33.