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 // _ <- fib1.join
} yield () } yield ()
application.runToFuture application.timed.runToFuture
.onComplete(res => .onComplete(res =>
res match { res match {
case Failure(exception) => { case Failure(exception) => {
println("Application start failed. Reason -") println("Application start failed. Reason -")
exception.printStackTrace() exception.printStackTrace()
} }
case Success(value) => println("Application started Successfully") case Success((duration, _)) =>
println(
s"Application started successfully in ${duration.toSeconds} seconds"
)
} }
) )