Merge pull request #27707 from akka/wip-26187-finally-patriknw
Final removal of ActorPublisher and ActorSubscriber, #26187
This commit is contained in:
commit
b94f3c3bcc
15 changed files with 435 additions and 861 deletions
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
|
|
@ -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));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue