* Adds internal access to materializer before initialization (#25324) * Implements new actorRef source based on graph stage (#25324) * Removes obsolete actorRef source (#25324) * Improves backwards compatibility with old implementation (#25324) * Removes dedicated new subclass for materializer access again (#25324) * Improves implementation (#25324) * Finalizes implementation (#25324) * Small improvements to API and documentation (#25324) * Completion strategy as a replacement for poison pill (#25324) * Adding more tests and updating the documentation (#25324)
This commit is contained in:
parent
39c06c7c34
commit
c9b3f1de6d
15 changed files with 328 additions and 201 deletions
|
|
@ -787,7 +787,8 @@ public class IntegrationDocTest extends AbstractJavaTest {
|
|||
actorRef.tell(1, ActorRef.noSender());
|
||||
actorRef.tell(2, ActorRef.noSender());
|
||||
actorRef.tell(3, ActorRef.noSender());
|
||||
actorRef.tell(new akka.actor.Status.Success("done"), ActorRef.noSender());
|
||||
actorRef.tell(
|
||||
new akka.actor.Status.Success(CompletionStrategy.draining()), ActorRef.noSender());
|
||||
// #source-actorRef
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue