Added timing to main app task

This commit is contained in:
Rohan Sircar 2020-08-28 14:39:39 +05:30
parent e3abe03456
commit ffeb4b1eb4

View File

@ -75,14 +75,17 @@ object ScalaFXHelloWorld extends JFXApp with MainModule {
}
// _ <- fib1.join
} yield ()
application.runToFuture
application.timed.runToFuture
.onComplete(res =>
res match {
case Failure(exception) => {
println("Application start failed. Reason -")
exception.printStackTrace()
}
case Success(value) => println("Application started Successfully")
case Success((duration, _)) =>
println(
s"Application started successfully in ${duration.toSeconds} seconds"
)
}
)