Skip to content

Instantly share code, notes, and snippets.

@bka9
Last active August 29, 2015 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bka9/ae21c0b5c0df13061ab2 to your computer and use it in GitHub Desktop.
Save bka9/ae21c0b5c0df13061ab2 to your computer and use it in GitHub Desktop.
def countOnPage(urls: List(String), search: String) = {
val futureSeq = Future.sequence(urls.map{ url =>
val fStrings : Future[Int] = countOnPage(url,search)
fStrings
})
fStrings.map{ counts =>
counts.foldLeft(0)((total,num) => total + num)
}.recover{
case _ => 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment