From 1778a9e0c677134a6b71975168812bcfdc70c7aa Mon Sep 17 00:00:00 2001
From: Raimo Niskanen
Date: Tue, 20 Sep 2016 17:03:24 +0200
Subject: Improve docs
---
system/doc/design_principles/statem.xml | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
(limited to 'system')
diff --git a/system/doc/design_principles/statem.xml b/system/doc/design_principles/statem.xml
index 43359829b2..565b0e5274 100644
--- a/system/doc/design_principles/statem.xml
+++ b/system/doc/design_principles/statem.xml
@@ -1010,6 +1010,8 @@ do_unlock() ->
the state, you must explicitly
insert the internal event
or use a state transition function.
+ This is something that can be forgotten, and if you find that
+ annoying please look at the next chapter.
The following is an implementation of entry actions
@@ -1058,10 +1060,18 @@ enter(Tag, State, Data) ->
Here is the same example as the previous but instead using
the built in
state entry events.
- You will have to handle the state entry events in every state.
+
+
+ Since the state entry events are unconditionally inserted by
+ the gen_statem engine you can not forget to insert them
+ yourself and you will have to handle the state entry events
+ in every state.
+
+
If you want state entry code in just a few states the previous
example may be more suitable, especially to only send internal
events when entering just those few states.
+ Note: additional discipline will be required.
You can also in the previous example choose to generate
--
cgit v1.2.3