From 2b7ba8f9f137d7d30f9f0a001fa6edc72f5a7fe1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Golusi=C5=84ski?= Date: Wed, 5 Dec 2018 13:19:27 +0100 Subject: [PATCH] remove redundant yet --- akka-docs/src/main/paradox/guide/tutorial_5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/src/main/paradox/guide/tutorial_5.md b/akka-docs/src/main/paradox/guide/tutorial_5.md index f85b50de11..e08b77f3d7 100644 --- a/akka-docs/src/main/paradox/guide/tutorial_5.md +++ b/akka-docs/src/main/paradox/guide/tutorial_5.md @@ -116,7 +116,7 @@ For our use case: that has been stopped in the meantime. * We can reach the deadline and receive a `CollectionTimeout`. -In the first two cases, we need to keep track of the replies, which we now delegate to a method `receivedResponse`, which we will discuss later. In the case of timeout, we need to simply take all the actors that have not yet replied yet (the members of the set `stillWaiting`) and put a `DeviceTimedOut` as the status in the final reply. Then we reply to the submitter of the query with the collected results and stop the query actor. +In the first two cases, we need to keep track of the replies, which we now delegate to a method `receivedResponse`, which we will discuss later. In the case of timeout, we need to simply take all the actors that have not yet replied (the members of the set `stillWaiting`) and put a `DeviceTimedOut` as the status in the final reply. Then we reply to the submitter of the query with the collected results and stop the query actor. To accomplish this, add the following to your `DeviceGroupQuery` source file: