Implementing a cron type scheduler in clojure

前端 未结 3 1078
臣服心动
臣服心动 2021-02-06 03:49

I\'m looking for any way for clojure that can trigger an event at a given time,

For example: I want a particular process to start at 9:30am and then I can trigger anothe

3条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-02-06 04:05

    Some Clojure libraries for scheduling I have come across, in ascending order of complexity:

    • Overtone/at-at, a simple ahead-of-time scheduler
    • Monotony, a scheduler to schedule things in a way that humans find intuitive.
    • Quartzite, a powerful Clojure scheduling library built on top the Java Quartz Scheduler.

提交回复
热议问题