Skip to content

Commit 2e379c1

Browse files
committed
corrected figure numbering
1 parent ee4470b commit 2e379c1

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

  • _docs/concepts/client_library/execution_management

_docs/concepts/client_library/execution_management/index.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -319,36 +319,36 @@ Figure 10: Executor with trigger condition
319319
- ONE: fires when input data for a user-specified handle is available
320320
- User-defined function: user can implement custom logic
321321

322-
Figure 10 shows an example of the ALL semantics. Only if all messages *msg_A, msg_B, msg_C* were received, then trigger condition is fullfilled and the callbacks are processed in a user-defined order.
322+
Figure 11 shows an example of the ALL semantics. Only if all messages *msg_A, msg_B, msg_C* were received, then trigger condition is fullfilled and the callbacks are processed in a user-defined order.
323323
<center>
324324
<img src="png/trigger_ALL.png" alt="Trigger condition ALL" width="30%" />
325325
</center>
326326
<center>
327-
Figure 10: Trigger condition ALL
327+
Figure 11: Trigger condition ALL
328328
</center>
329329

330-
Figure 11 shows an example of the ANY semantics. Thas is, if any messages *msg_A, msg_B, msg_C* was received, then trigger condition is fullfilled and the callbacks are processed in a user-defined order. This is equivalent to OR semantics.
330+
Figure 12 shows an example of the ANY semantics. Thas is, if any messages *msg_A, msg_B, msg_C* was received, then trigger condition is fullfilled and the callbacks are processed in a user-defined order. This is equivalent to OR semantics.
331331
<center>
332332
<img src="png/trigger_OR.png" alt="Trigger condition ANY" width="30%" />
333333
</center>
334334
<center>
335-
Figure 11: Trigger condition ANY (OR)
335+
Figure 12: Trigger condition ANY (OR)
336336
</center>
337337

338-
Figure 12 shows an example of the ONE semantics. Thas is, only if message *msg_B* was received, the trigger condition is fullfilled and (potentially all) callbacks are processed in a user-defined order.
338+
Figure 13 shows an example of the ONE semantics. Thas is, only if message *msg_B* was received, the trigger condition is fullfilled and (potentially all) callbacks are processed in a user-defined order.
339339
<center>
340340
<img src="png/trigger_ONE.png" alt="Trigger condition ONE" width="30%" />
341341
</center>
342342
<center>
343-
Figure 12: Trigger condition ONE
343+
Figure 13: Trigger condition ONE
344344
</center>
345345

346-
Figure 13 describes the custom semantics. A custom trigger condition with could be a more complex logic of multiple messages, can be passed to the executor. This might also include hardware triggers, like interrupts.
346+
Figure 14 describes the custom semantics. A custom trigger condition with could be a more complex logic of multiple messages, can be passed to the executor. This might also include hardware triggers, like interrupts.
347347
<center>
348348
<img src="png/trigger_user_defined.png" alt="Trigger condition user-defined" width="30%" />
349349
</center>
350350
<center>
351-
Figure 13: Trigger condition user-defined
351+
Figure 14: Trigger condition user-defined
352352
</center>
353353

354354

0 commit comments

Comments
 (0)