http-pony-transformer-http-0.1.0.3: 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 HttpMessage a m r = Message HttpType a m r Source #

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

type HttpRequest a m r = HttpMessage a m r Source #

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

type HttpResponse a m r = HttpMessage a m r Source #

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