from my own experience with core async I;d say yes

I've made two macros
 https://github.com/gerritjvv/fun-utils/blob/master/src/fun_utils/core.clj#L208 
and
https://github.com/gerritjvv/fun-utils/blob/master/src/fun_utils/core.clj#L220
 that does exactly what you're referring to.

Remember if you're going to schedule a task that uses IO or takes some time 
then you need to use a thread and not a general (go ) block, 
this is what fixdelay-thread does, otherwise you end up blocking the 
general core.async thread pool.


On Tuesday, 22 September 2015 16:35:37 UTC+2, Leon Grapenthin wrote:
>
> Is it recommended to use core.asyncs timeout channel to wait on hour or 
> even longer for light scheduling tasks?
>
> High precision is a nongoal.
>
> Kind regards,
>  Leon.
>

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to