Skip to content

Instantly share code, notes, and snippets.

@momota10
Created December 15, 2015 13:02
Show Gist options
  • Save momota10/323a00bb795026096afa to your computer and use it in GitHub Desktop.
Save momota10/323a00bb795026096afa to your computer and use it in GitHub Desktop.
Future.traverse(list) { listId =>
caRepository.findById(listId) filter {
case Some(c) => c.status match {
case Stopped => false
case _ => true
}
} map { cs =>
cs.get.id.get
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment