Skip to content

Instantly share code, notes, and snippets.

@JavierCane
Created October 16, 2017 06:53
Show Gist options
  • Save JavierCane/87fc593044fa3972411d74987002cca6 to your computer and use it in GitHub Desktop.
Save JavierCane/87fc593044fa3972411d74987002cca6 to your computer and use it in GitHub Desktop.
Scala Future flatMap vs for comprehension CodelyTV Pro Scala course example
package tv.codely.scala_intro_examples.lesson_05_ifs_for
import scala.concurrent.{ExecutionContext, Future}
final class SandwichMaker(private val fridge: Fridge, private val fryer: Fryer)(implicit ec: ExecutionContext) {
def make(): Future[Sandwich] = {
val breadOptionFuture = fridge.takeBread()
val cheeseOptionFuture = fridge.takeCheese()
val hamOptionFuture = fridge.takeHam()
val eggOptionFuture = fridge.takeEgg()
val baconOptionFuture = fridge.takeBacon()
breadOptionFuture.flatMap { breadOption =>
cheeseOptionFuture.flatMap { cheeseOption =>
hamOptionFuture.flatMap { hamOption =>
eggOptionFuture.flatMap { eggOption =>
baconOptionFuture.map { baconOption =>
Sandwich(Seq(breadOption, cheeseOption, hamOption, eggOption, baconOption))
}
}
}
}
}
}
}
final class SandwichMakerWithFor(private val fridge: Fridge, private val fryer: Fryer)(implicit ec: ExecutionContext) {
def make(): Future[Sandwich] =
for {
breadOption <- fridge.takeBread()
cheeseOption <- fridge.takeCheese()
hamOption <- fridge.takeHam()
eggOption <- fridge.takeEgg()
baconOption <- fridge.takeBacon()
} yield Sandwich(Seq(breadOption, cheeseOption, hamOption, eggOption, baconOption))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment