Merge pull request #27707 from akka/wip-26187-finally-patriknw

Final removal of ActorPublisher and ActorSubscriber, #26187
This commit is contained in:
Patrik Nordwall 2019-09-24 13:31:25 +02:00 committed by GitHub
commit b94f3c3bcc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 435 additions and 861 deletions

View file

@ -34,6 +34,8 @@ After being deprecated since 2.5.0, the following have been removed in Akka 2.6.
- Use `AbstractPersistentActor` instead.
* `UntypedPersistentActorWithAtLeastOnceDelivery`
- Use @apidoc[AbstractPersistentActorWithAtLeastOnceDelivery] instead.
* `akka.stream.actor.ActorSubscriber` and `akka.stream.actor.ActorPublisher`
- Use `GraphStage` instead.
After being deprecated since 2.2, the following have been removed in Akka 2.6.

View file

@ -59,7 +59,7 @@ public class IntegrationDocTest extends AbstractJavaTest {
+ "} \n"
+ "akka.actor.default-mailbox.mailbox-type = akka.dispatch.UnboundedMailbox\n");
system = ActorSystem.create("ActorPublisherDocTest", config);
system = ActorSystem.create("IntegrationDocTest", config);
ref = system.actorOf(Props.create(Translator.class));
}