package shuttle
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=169edfba7a08ae202a3b8a6622cb5c6a22f627d4f09856acb0a4e0885a1ccf17
sha512=9bf8344563e7ac9ee031086fdf1e19502934073dd186869574c29a95403333264cf12a60ee8bbdc36c32800acf080126dcfe54871e601f04096ffe523352937e
CHANGES.md.html
0.8.1
Same content as 0.8.0, but it re-works the integration tests to not spawn external processes, and adds a constraint on shuttle_http to only have it available on 64 bit systems.
0.8.0
Revive the http codec as a new shuttle_http package
Http codec supports a timeout for reading Request headers
Server module reports a deferred that resolves when the server context closes. This can be usedul to register cleanup actions that should run when a server connection is torn down.
Using the utility methods within the Server module to create responses ensures that streams are torn down if the server connection is closed before a stream was fully consumed.
0.7.0
Remove support for blocking file descriptors
Output_channel accepts an optional user-provided Async Time_source
Input_channel accepts an optional user-provided Async Time_source
Support timeouts for Input_channel.refill
Remove
read
,read_line
,lines
from Input_channel
0.6.0
Increase upper bound for core/async to 0.15.0
0.5.0
Remove Buffer_is_full in favor of Bytebuffers that can grow upto a user provided max size
Flush operations reports if the write operations encountered an error
Reliably wakeup pending flushes when there is an error encountered while flushing pending bytes
0.4.0
Remove Bytebuffer from public api
Deprecate
schedule_bigstring
,write_string
Support reading lines from an input channel
Use Core_unix.IOVec to represent a view inside the input channel
Support file descriptors that don't support nonblocking IO
Remove the
read_one_chunk_at_a_time
interface from input channelSwitch to 0.15 series of core and async
0.3.1
Add support for using format strings for writing to an output channel.
Remove support for deferred responses from chunked reader callbacks.
Add a new
shuttle_http
library that implements a driver for httpaf server_connection.
0.3.0
Support creating a reader pipe from
Input_channel
.Support creating a writer pipe from
Output_channel
.Support encrypted channels using
async_ssl
.
0.2.0
Support deferred's in
Input_channel.read_one_chunk_at_a_time
Support writing characters to output channels
0.1.0
Initial release