Skip to content

Instantly share code, notes, and snippets.

@wjlow
Created May 28, 2018 06:00
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 wjlow/3689525d0899e322825dd3d8989619cc to your computer and use it in GitHub Desktop.
Save wjlow/3689525d0899e322825dd3d8989619cc to your computer and use it in GitHub Desktop.
class ListingProcessor(transform: RawListing => FullListing, 
                       save: String => Async[Unit]) {

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