Created
May 28, 2017 22:10
-
-
Save PeterPerhac/5771139d7dc0582d4e05b08ef102c5b5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import scala.concurrent.duration.Duration.Inf | |
import scala.concurrent.{Await, Future} | |
import scala.concurrent.ExecutionContext.Implicits.global | |
object App{ | |
def main(args:Array[String]):Unit = { | |
import cats.syntax.cartesian._ | |
import cats.instances.future._ | |
val program = for { | |
id <- getProfileId("reteP") | |
p <- getProfile(id) | |
(prefs,balance) <- (getPreferences(p.iid) |@| getBalance(p.iid)).tupled | |
} yield println(s"${System.currentTimeMillis()} ${p.name}'s balance is $balance. Preferences: $prefs") | |
Await.result(program, Inf) | |
} | |
final case class Profile(iid: String, name: String, age: Int) | |
val getProfileId : String => Future[String] = in => Future { | |
println(s"${System.currentTimeMillis()} getProfileId") | |
Thread.sleep(1000) | |
in | |
} | |
val getProfile : String => Future[Profile] = pid => Future { | |
println(s"${System.currentTimeMillis()} getProfile") | |
Thread.sleep(1000) | |
Profile(pid.reverse + pid, pid.reverse, pid.length) | |
} | |
val getPreferences : String => Future[String] = iid => Future{ | |
println(s"${System.currentTimeMillis()} getPreferences") | |
Thread.sleep(1000) | |
iid | |
} | |
val getBalance : String => Future[Long] = iid => Future{ | |
println(s"${System.currentTimeMillis()} getBalance") | |
Thread.sleep(1000) | |
System.currentTimeMillis | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment