-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Efficiently run periodic, on-demand actions -- -- API docs and the README are available at -- http://www.stackage.org/package/auto-update. @package auto-update @version 0.1.5 -- | In a multithreaded environment, running actions on a regularly -- scheduled background thread can dramatically improve performance. For -- example, web servers need to return the current time with each HTTP -- response. For a high-volume server, it's much faster for a dedicated -- thread to run every second, and write the current time to a shared -- IORef, than it is for each request to make its own call to -- getCurrentTime. -- -- But for a low-volume server, whose request frequency is less than once -- per second, that approach will result in more calls to -- getCurrentTime than necessary, and worse, kills idle GC. -- -- This library solves that problem by allowing you to define actions -- which will either be performed by a dedicated thread, or, in times of -- low volume, will be executed by the calling thread. -- -- Example usage: -- --
-- import Data.Time
-- import Control.AutoUpdate
--
-- getTime <- mkAutoUpdate defaultUpdateSettings
-- { updateAction = getCurrentTime
-- , updateFreq = 1000000 -- The default frequency, once per second
-- }
-- currentTime <- getTime
--
--
-- For more examples, see the blog post introducing this library.
module Control.AutoUpdate
-- | Settings to control how values are updated.
--
-- This should be constructed using defaultUpdateSettings and
-- record update syntax, e.g.:
--
--
-- let settings = defaultUpdateSettings { updateAction = getCurrentTime }
--
data UpdateSettings a
-- | Default value for creating an UpdateSettings.
defaultUpdateSettings :: UpdateSettings ()
-- | Action to be performed to get the current value.
--
-- Default: does nothing.
updateAction :: UpdateSettings a -> IO a
-- | Microseconds between update calls. Same considerations as
-- threadDelay apply.
--
-- Default: 1 second (1000000)
updateFreq :: UpdateSettings a -> Int
-- | NOTE: This value no longer has any effect, since worker threads are
-- dedicated instead of spawned on demand.
--
-- Previously, this determined how many times the data must be requested
-- before we decide to spawn a dedicated thread.
--
-- Default: 3
updateSpawnThreshold :: UpdateSettings a -> Int
-- | Generate an action which will either read from an automatically
-- updated value, or run the update action in the current thread.
mkAutoUpdate :: UpdateSettings a -> IO (IO a)
-- | Generate an action which will either read from an automatically
-- updated value, or run the update action in the current thread if the
-- first time or the provided modify action after that.
mkAutoUpdateWithModify :: UpdateSettings a -> (a -> IO a) -> IO (IO a)
-- | Debounce an action, ensuring it doesn't occur more than once for a
-- given period of time.
--
-- This is useful as an optimization, for example to ensure that logs are
-- only flushed to disk at most once per second.
--
-- Example usage:
--
--
-- printString <- mkDebounce defaultDebounceSettings
-- { debounceAction = putStrLn "Running action"
-- , debounceFreq = 5000000 -- 5 seconds
-- }
--
--
-- -- >>> printString -- Running action -- -- >>> printString -- <Wait five seconds> -- Running action ---- -- See the fast-logger package (System.Log.FastLogger) for -- real-world usage. module Control.Debounce -- | Settings to control how debouncing should work. -- -- This should be constructed using defaultDebounceSettings and -- record update syntax, e.g.: -- --
-- let settings = defaultDebounceSettings { debounceAction = flushLog }
--
data DebounceSettings
-- | Default value for creating a DebounceSettings.
defaultDebounceSettings :: DebounceSettings
-- | Microseconds lag required between subsequence calls to the debounced
-- action.
--
-- Default: 1 second (1000000)
debounceFreq :: DebounceSettings -> Int
-- | Action to be performed.
--
-- Note: all exceptions thrown by this action will be silently discarded.
--
-- Default: does nothing.
debounceAction :: DebounceSettings -> IO ()
-- | Generate an action which will trigger the debounced action to be
-- performed. The action will either be performed immediately, or after
-- the current cooldown period has expired.
mkDebounce :: DebounceSettings -> IO (IO ())
-- | This module provides the ability to create reapers: dedicated cleanup
-- threads. These threads will automatically spawn and die based on the
-- presence of a workload to process on. Example uses include:
--
--