Popularity
4.6
Declining
Activity
0.0
Stable
2
6
0

Monthly Downloads: 10
Programming language: Haskell
License: MIT License
Tags: Concurrency     Control     Timeout    
Latest version: v0.1.1

timeout alternatives and similar packages

Based on the "timeout" category.
Alternatively, view timeout alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of timeout or a related project?

Add another 'timeout' Package

README

timeout Build Status Build Status

Generalized sleep and timeout functions.

Example

module Main where

import Control.Timeout (timeout, sleep)

main :: IO ()
main = do
    timeout 1 $ sleep 2  -- Will return IO Nothing
    timeout 2 $ sleep 1  -- Will return IO (Just ())
    return ()