Final removal of ActorPublisher and ActorSubscriber, #26187

* some messages from ActorSubscriber were also used in other places,
  so moved those to impl.ActorSubscriberMessage
* WatermarkRequestStrategy used by SourceRefImp, so moved there
This commit is contained in:
Patrik Nordwall 2019-09-13 15:19:20 +02:00
parent a84aa0095c
commit db132cd216
15 changed files with 435 additions and 861 deletions

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));
}