Skip to content

Instantly share code, notes, and snippets.

@MansurAshraf
Created July 13, 2015 16:48
Show Gist options
  • Save MansurAshraf/73aa0a511d5bc24bc325 to your computer and use it in GitHub Desktop.
Save MansurAshraf/73aa0a511d5bc24bc325 to your computer and use it in GitHub Desktop.
future failure
def checkPath(p: String) : Boolean
val futureA = Future{
if(!checkPath(...)) throw new IllegalStateException("path doesnt exisit")
}
val futureB = Future(..)
futureA.flatMap(futureB)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment