name: throttled-io-loop version: 0.1.0.2 synopsis: Loop over an action but throttle it to a certain rate description: This provides a function that loops over an IO action endlessly, but limited to a certain number of executions per time period. homepage: https://github.com/AxialExchange/haskell-throttled-io-loop#readme license: BSD3 license-file: LICENSE author: Robert Fischer maintainer: rfischer+stack@axialexchange.com copyright: Copyright: (c) 2016 Axial Exchange category: Concurrent build-type: Simple -- extra-source-files: cabal-version: >=1.10 library hs-source-dirs: src exposed-modules: Control.Concurrent.ThrottledLoop build-depends: base >= 4.7 && < 5, time >= 1.6.0.1 && < 1.7, natural-numbers >= 0.1.2.0 && < 0.2 default-language: Haskell2010 test-suite loop-test type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Spec.hs build-depends: base, throttled-io-loop, hspec >= 2.2.2 && < 3, QuickCheck >= 2.8.2 && < 3 ghc-options: -threaded -rtsopts -with-rtsopts=-N default-language: Haskell2010 source-repository head type: git location: https://github.com/AxialExchange/haskell-throttled-io-loop