Adds variant accepting any ack message (#29586) (#29910)

This commit is contained in:
Nicolas Vollmar 2020-12-22 09:46:38 +01:00 committed by GitHub
parent f68f0cd805
commit 40713f836f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 189 additions and 17 deletions

View file

@ -23,6 +23,7 @@ This operator is included in:
## Description
Sends the elements of the stream to the given @java[`ActorRef<T>`]@scala[`ActorRef[T]`] with backpressure, to be able to signal demand when the actor is ready to receive more elements.
There is also a variant without a concrete acknowledge message accepting any message as such.
See also:

View file

@ -12,6 +12,7 @@ Send the elements from the stream to an `ActorRef` (of the classic actors API) w
Send the elements from the stream to an `ActorRef` which must then acknowledge reception after completing a message,
to provide back pressure onto the sink.
There is also a variant without a concrete acknowledge message accepting any message as such.
See also: