The type signature for http is:
http :: MonadIO m
=> Request m
-> (W.Status -> W.ResponseHeaders -> Iteratee S.ByteString m a)
-> Manager
-> Iteratee S.ByteString m a
Why isn't it this instead?
http :: MonadIO m => … -> m a
If I understand correctly, an Iteratee x m a is like a monadic parser that consumes a stream of items of type x. It makes sense for http's callback to be an Iteratee, as it consumes the response body.
However, http itself does not appear to consume any input. The httpLbs function executes http with run_ (defined in Data.Enumerator). From what I can tell, run considers it an error if the iteratee given to it expects input:
-- | Run an iteratee until it finishes, and return either the final value
-- (if it succeeded) or the error (if it failed).
run :: Monad m => Iteratee a m b
-> m (Either Exc.SomeException b)
run i = do
mStep <- runIteratee $ enumEOF ==<< i
case mStep of
Error err -> return $ Left err
Yield x _ -> return $ Right x
Continue _ -> error "run: divergent iteratee"
So if http does not consume input, why is it an iteratee? Why isn't it just a MonadIO action?
httpnot consume data from a TCP connection? – Rhymoid Oct 3 '11 at 18:29...are important. One is a function that returns an Iteratee. – luqui Oct 3 '11 at 19:05http, and to clarify that its callback argument consumes input (from what I can tell). Thanks. – Joey Adams Oct 3 '11 at 19:17