polysemy-http-0.13.0.1: Polysemy effects for HTTP clients
Safe HaskellSafe-Inferred
LanguageGHC2021

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.