The state transitions are not automatic. You have to send an event to the FSM to "drive" it.<br><br>Look at the documentation for various "send_event" functions.<br><br>/M<br><br><div class="gmail_quote">
On 24 May 2011 10:10, Alexander Kuleshov <span dir="ltr"><<a href="mailto:kuleshovmail@gmail.com">kuleshovmail@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Hello,<br>
<br>
I have erlang gen_fsm, my first state:<br>
<br>
begin({Nick}, _From, State) -><br>
            {reply, true, next_state, State}.<br>
Then i have:<br>
<br>
next_state(_Event, _From, State) -><br>
        io:format("Test \n")<br>
        {reply, ok, begin, State}.<br>
But i don't seen Test note in shell<br>
<br>
How correctly transit to a new state?<br>
<br>
Thank you.<br>
_______________________________________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a><br>
<a href="http://erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://erlang.org/mailman/listinfo/erlang-questions</a><br>
</blockquote></div><br>