From 0fe906ae7453aa684e998bbcc7a78b62d84f0206 Mon Sep 17 00:00:00 2001 From: Joris Guyonvarch Date: Sun, 6 Apr 2014 22:55:16 +0200 Subject: Show resume and projects from a configuration file --- src/Daemon.hs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/Daemon.hs (limited to 'src/Daemon.hs') diff --git a/src/Daemon.hs b/src/Daemon.hs new file mode 100644 index 0000000..1351ad5 --- /dev/null +++ b/src/Daemon.hs @@ -0,0 +1,18 @@ +module Daemon + ( runDaemon + ) where + +import Control.Concurrent (threadDelay) +import Control.Monad (forever) + +import Daemon.Frequency + +runDaemon :: Frequency -> (() -> IO ()) -> IO () +runDaemon frequency process = + forever $ do + process () + threadDelay (sleepDelayMs frequency) + +sleepDelayMs :: Frequency -> Int +sleepDelayMs Hourly = 1000000 * 60 * 60 +sleepDelayMs Daily = (sleepDelayMs Hourly) * 24 -- cgit v1.2.3