http-pony-transformer-http-0.1.0.1: Transform raw TCP stream to a basic HTTP type

Safe HaskellSafe
LanguageHaskell2010

Network.HTTP.Pony.Transformer.HTTP.Type

Documentation

type Message t a m r = (t, Producer a m r) Source #

type Message' a m r = (HttpType, Producer a m r) Source #

type Request t a m r = Message t a m r Source #

type Request' a m r = Message' a m r Source #

type Response t a m r = Message t a m r Source #

type Response' a m r = Message' a m r Source #

type Middleware f s t a b = (a -> f b) -> s -> f t Source #