diff --git a/akka-docs/src/main/paradox/stream/stages-overview.md b/akka-docs/src/main/paradox/stream/stages-overview.md index f798ce4e7c..f76306b76f 100644 --- a/akka-docs/src/main/paradox/stream/stages-overview.md +++ b/akka-docs/src/main/paradox/stream/stages-overview.md @@ -201,16 +201,6 @@ Defers creation and materialization of a `Source` until there is demand. --------------------------------------------------------------- -### actorPublisher - -Wrap an actor extending `ActorPublisher` as a source. - -**emits** depends on the actor implementation - -**completes** when the actor stops - ---------------------------------------------------------------- - ### actorRef Materialize an `ActorRef`, sending messages to it will emit them on the stream. The actor contain @@ -508,19 +498,6 @@ to provide back pressure onto the sink. --------------------------------------------------------------- -### actorSubscriber - -Create an actor from a `Props` upon materialization, where the actor implements `ActorSubscriber`, which will -receive the elements from the stream. - -Materializes into an `ActorRef` to the created actor. - -**cancels** when the actor terminates - -**backpressures** depends on the actor implementation - ---------------------------------------------------------------- - ### asPublisher Integration with Reactive Streams, materializes into a `org.reactivestreams.Publisher`. diff --git a/akka-docs/src/main/paradox/stream/stream-integrations.md b/akka-docs/src/main/paradox/stream/stream-integrations.md index 4d5e69813a..f4c81fb55c 100644 --- a/akka-docs/src/main/paradox/stream/stream-integrations.md +++ b/akka-docs/src/main/paradox/stream/stream-integrations.md @@ -503,12 +503,6 @@ These can be consumed by other Reactive Stream libraries or used as an Akka Stre @@@ warning -`ActorPublisher` and `ActorSubscriber` will probably be deprecated in future versions of Akka. - -@@@ - -@@@ warning - `ActorPublisher` and `ActorSubscriber` cannot be used with remote actors, because if signals of the Reactive Streams protocol (e.g. `request`) are lost the the stream may deadlock.