http2-client 0.1.0.0 → 0.1.0.1
raw patch · 2 files changed
+11/−4 lines, 2 filesPVP: minor bump suggested
API additions: PVP suggests at least a minor version bump
API changes (from Hackage documentation)
+ Network.HTTP2.Client: type StreamStarter a = (Http2Stream -> StreamDefinition a) -> IO (Either TooMuchConcurrency a)
Files
- http2-client.cabal +1/−1
- src/Network/HTTP2/Client.hs +10/−3
http2-client.cabal view
@@ -1,5 +1,5 @@ name: http2-client-version: 0.1.0.0+version: 0.1.0.1 synopsis: A native HTTP2 client library. description: Please read the README.ms at the homepage. homepage: https://github.com/lucasdicioccio/http2-client
src/Network/HTTP2/Client.hs view
@@ -3,16 +3,23 @@ {-# LANGUAGE OverloadedStrings #-} module Network.HTTP2.Client (+ -- * Creating a client Http2Client(..) , newHttp2Client , PushPromiseHandler+ -- * Starting streams+ , StreamDefinition(..)+ , StreamStarter+ , StreamThread , Http2Stream(..)+ -- * Sending data for POSTs. , sendData- , StreamThread- , _gtfo- , StreamDefinition(..)+ -- * Flow control , IncomingFlowControl(..) , OutgoingFlowControl(..)+ -- * Misc.+ , _gtfo+ -- * Convenience re-exports , module Network.HTTP2.Client.FrameConnection , module Network.Socket , module Network.TLS