fs2-cron is a microlibrary that provides FS2 streams based on Cron4s cron expressions.
import cats.effect.{IO, Timer}
import cron4s.Cron
import eu.timepit.fs2cron.awakeEveryCron
import fs2.Stream
import java.time.LocalTime
import scala.concurrent.ExecutionContext
implicit val timer: Timer[IO] = IO.timer(ExecutionContext.global)
val evenSeconds = Cron.unsafeParse("*/2 * * ? * *")
// evenSeconds: cron4s.CronExpr = */2 * * ? * *
val printTime = Stream.eval(IO(println(LocalTime.now)))
// printTime: fs2.Stream[cats.effect.IO,Unit] = Stream(..)
val scheduled = awakeEveryCron[IO](evenSeconds) >> printTime
// scheduled: fs2.Stream[[x]cats.effect.IO[x],Unit] = Stream(..)
scheduled.take(3).compile.drain.unsafeRunSync
// 20:35:50.099966
// 20:35:52.005895
// 20:35:54.003259
import cats.effect.ContextShift
import eu.timepit.fs2cron.schedule
implicit val ctxShift: ContextShift[IO] = IO.contextShift(ExecutionContext.global)
val everyFiveSeconds = Cron.unsafeParse("*/5 * * ? * *")
// everyFiveSeconds: cron4s.CronExpr = */5 * * ? * *
val scheduledTasks = schedule(List(
evenSeconds -> Stream.eval(IO(println(LocalTime.now + " task 1"))),
everyFiveSeconds -> Stream.eval(IO(println(LocalTime.now + " task 2")))
))
// scheduledTasks: fs2.Stream[cats.effect.IO,Unit] = Stream(..)
scheduledTasks.take(9).compile.drain.unsafeRunSync
// 20:35:58.002980 task 1
// 20:36:00.004799 task 2
// 20:36:00.005573 task 1
// 20:36:02.003908 task 1
// 20:36:04.001799 task 1
// 20:36:05.005588 task 2
// 20:36:06.006398 task 1
// 20:36:08.004831 task 1
// 20:36:10.005374 task 1
// 20:36:10.005485 task 2
The latest version of the library is available for Scala 2.12.
If you're using sbt, add the following to your build:
libraryDependencies ++= Seq(
"eu.timepit" %% "fs2-cron-core" % "0.1.0"
)
fs2-cron is licensed under the Apache License, Version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 and also in the LICENSE file.