Skip to content

Instantly share code, notes, and snippets.

@wjlow
Created May 28, 2018 06:06
Show Gist options
  • Save wjlow/8187479f448a88069def7d5291658a8b to your computer and use it in GitHub Desktop.
Save wjlow/8187479f448a88069def7d5291658a8b to your computer and use it in GitHub Desktop.
class ListingProcessor(transform: RawListing => FullListing, 
                       save: Sink[Seq[FullListing]]) {

    def process(listings: Seq[RawListing]): Async[Unit] = {
      val fullListings = listings.map(transform) 
      // ...logic, etc
      save(fullListings)
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment