http-pony-0.1.0.1: A type unsafe http library

Safe HaskellNone
LanguageHaskell2010

Network.HTTP.Pony.Type

Documentation

type Message a m r = (StartLine, [Header], Producer a m r) Source #

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

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

type Application m a b x y = Request a m x -> m (Response b m y) Source #

type Application' m a x = Application m a a x x Source #

type Application'' m a = Application m a a () () Source #

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

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