polysemy-http-0.5.0.0: Polysemy Effects for HTTP clients
Safe HaskellNone
LanguageHaskell2010

Polysemy.Http.Interpreter.Pure

Description

 
Synopsis

Documentation

interpretHttpPure Source #

Arguments

:: Member (Embed IO) r 
=> [Response LByteString]

When a request is made, one response is popped of the list and returned. If the list is exhausted, a 502 response is returned.

-> [ByteString]

Chunks used for streaming responses.

-> InterpretersFor [Http LByteString, State [Response LByteString], State [ByteString]] r 

In-Memory interpreter for Http.