Skip to content

Instantly share code, notes, and snippets.

@gabfssilva
Created July 8, 2019 13:43
Show Gist options
  • Save gabfssilva/bb74c8965c1ac179745b123ce2266359 to your computer and use it in GitHub Desktop.
Save gabfssilva/bb74c8965c1ac179745b123ce2266359 to your computer and use it in GitHub Desktop.
Source
.unfoldAsync(1) { page =>
fetchHttpServicePage(page).map {
case Nil => None
case list => Some(page + 1, list)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment