Skip to content

Instantly share code, notes, and snippets.

@vigoo
Created November 22, 2019 16:49
Show Gist options
  • Save vigoo/ccf5d6bc38ce7a5803316c919ad47e51 to your computer and use it in GitHub Desktop.
Save vigoo/ccf5d6bc38ce7a5803316c919ad47e51 to your computer and use it in GitHub Desktop.
prox 2/16
val utf8Decode: Sink[ByteString, Future[String]] =
Flow[ByteString]
.reduce(_ ++ _)
.map(_.utf8String)
.toMat(Sink.head)(Keep.right)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment