2020-04-28 16:58:00 +02:00
|
|
|
# Sink.combine
|
2018-04-18 11:44:37 +02:00
|
|
|
|
|
|
|
|
Combine several sinks into one using a user specified strategy
|
|
|
|
|
|
2018-05-29 17:00:48 +09:00
|
|
|
@ref[Sink operators](../index.md#sink-operators)
|
2018-04-18 11:44:37 +02:00
|
|
|
|
|
|
|
|
@@@div { .group-scala }
|
|
|
|
|
|
|
|
|
|
## Signature
|
|
|
|
|
|
2018-09-13 10:49:51 +02:00
|
|
|
@@signature [Sink.scala](/akka-stream/src/main/scala/akka/stream/scaladsl/Sink.scala) { #combine }
|
2018-04-18 11:44:37 +02:00
|
|
|
|
|
|
|
|
@@@
|
|
|
|
|
|
|
|
|
|
## Description
|
|
|
|
|
|
|
|
|
|
Combine several sinks into one using a user specified strategy
|
|
|
|
|
|
2019-10-04 15:46:05 +02:00
|
|
|
## Reactive Streams semantics
|
2018-04-18 11:44:37 +02:00
|
|
|
|
|
|
|
|
@@@div { .callout }
|
|
|
|
|
|
|
|
|
|
**cancels** depends on the strategy
|
|
|
|
|
|
|
|
|
|
**backpressures** depends on the strategy
|
|
|
|
|
|
|
|
|
|
@@@
|
|
|
|
|
|