From 73c53f56e2e126a1634c5b6a57bbe724a3c8bbd2 Mon Sep 17 00:00:00 2001 From: Hugo Zwaal <58431933+hugomendix@users.noreply.github.com> Date: Mon, 8 Dec 2025 13:23:42 +0100 Subject: [PATCH] Clarify when notify workflow returns false. --- .../activities/workflow-activities/notify-workflow.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/activities/workflow-activities/notify-workflow.md b/content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/activities/workflow-activities/notify-workflow.md index 6fb444d31c0..47126def643 100644 --- a/content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/activities/workflow-activities/notify-workflow.md +++ b/content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/activities/workflow-activities/notify-workflow.md @@ -51,6 +51,10 @@ The ([caption](/refguide/wait-for-notification/#general) of the) [wait for notif ### Variable Name The name of the variable returned by the activity. This variable will be a Boolean that indicates whether the notification is received or not by the workflow instance. +It will return false in the following situations: + +* The [wait for notification](/refguide/wait-for-notification/) workflow activity is not suspended at the time of the **Notify workflow** (i.e. it is not waiting). +* The [wait for notification](/refguide/wait-for-notification/) workflow activity has already been notified. For more information on the return values, see the [Introduction](#introduction) section above.