From 664eb0f55efeea8124a8b877853058e9e2711614 Mon Sep 17 00:00:00 2001 From: Winston Chang Date: Fri, 22 Feb 2013 14:24:38 -0600 Subject: [PATCH] More detail in execution scheduling --- _includes/tutorial/execution-scheduling.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_includes/tutorial/execution-scheduling.md b/_includes/tutorial/execution-scheduling.md index 47cc23e8f..67d567713 100644 --- a/_includes/tutorial/execution-scheduling.md +++ b/_includes/tutorial/execution-scheduling.md @@ -110,6 +110,6 @@ Finally, `output$nthValueInv()` takes that value, finds the inverse, and then as In this section we've learned about: -* **Invalidation flags** -* **Arrow removal** -* **Flush events** +* **Invalidation flags**: reactive expressions and observers are invalidated (marked dirty) when their parents change or are invalidated, and they are marked as clean after they re-execute. +* **Arrow creation and removal**: After a parent object follows invalidates its children, the arrows will be removed. New arrows will be created when a reactive object accesses another reactive object. +* **Flush events** trigger the execution of endpoints. Flush events occur whenever the browser sends data to the server.