Safe Haskell | Safe-Inferred |
---|
- data UrlRequest = UrlRequest {}
- data Cachable
- = Cachable
- | Uncachable
- | MaxAge !CInt
- data UrlState = UrlState {
- inProgress :: Map String (FilePath, [FilePath], Cachable)
- waitToStart :: Q String
- pipeLength :: Int
- randomJunk :: String
- data Q a = Q [a] [a]
- readQ :: Q a -> Maybe (a, Q a)
- insertQ :: a -> Q a -> Q a
- pushQ :: a -> Q a -> Q a
- deleteQ :: Eq a => a -> Q a -> Q a
- elemQ :: Eq a => a -> Q a -> Bool
- emptyQ :: Q a
- nullQ :: Q a -> Bool
- data Priority
- data ConnectionError
Documentation
data UrlRequest Source
UrlState | |
|
data ConnectionError Source
Data type to represent a connection error. The following are the codes from libcurl which map to each of the constructors: * 6 -> CouldNotResolveHost : The remote host was not resolved. * 7 -> CouldNotConnectToServer : Failed to connect() to host or proxy. * 28 -> OperationTimeout: the specified time-out period was reached.