xp-framework / http

HTTP protocol support for the XP Framework
2 stars 2 forks source link

Implement flushing chunked output streams #26

Closed thekid closed 1 year ago

thekid commented 1 year ago

Example:

$stream= new ChunkedHttpOutputStream($socket);
$stream->write('Test');
$stream->flush(); // Was a NOOP before, now actually flushes buffer and writes to socket
thekid commented 1 year ago

Released in https://github.com/xp-framework/http/releases/tag/v10.1.0