Sink.ignore

Consume all elements but discards them.

Sink operators

Signature

def ignore: Sink[Any, Future[Done]]

Description

Consume all elements but discards them. Useful when a stream has to be consumed but there is no use to actually do anything with the elements.

cancels never

backpressures never

Found an error in this documentation? The source code for this page can be found here. Please feel free to edit and contribute a pull request.