Skip to content

Instantly share code, notes, and snippets.

@charmygarg
Last active June 15, 2017 04:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save charmygarg/935544d533a18906010c454fc65edd70 to your computer and use it in GitHub Desktop.
Save charmygarg/935544d533a18906010c454fc65edd70 to your computer and use it in GitHub Desktop.
Monix Scheduler Once Example 2
import java.util.concurrent.TimeUnit
import monix.execution.Scheduler.{global => scheduler}
import scala.concurrent.duration._
object MonixScheduler extends App {
val delayOnce = scheduler.scheduleOnce(2.seconds) {
println("Schedule Once Example 2")
}
Thread.sleep(20000)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment