Tagged Questions
The gen-fsm tag has no wiki summary.
6
votes
3answers
924 views
How to visualize an Erlang gen_fsm
Do you know of any existing tool to graphically render the diagram of an Erlang gen_fsm starting from the source code?
3
votes
1answer
241 views
when to use Gen_Fsm and when to use Gen_Server?
After checking out Gen_Fsm and Gen_Server documents, I found that, more or less, they act as similar behavior. In my opinion, if there is one loop function for sending broadcast or listening tcp sock, ...
3
votes
1answer
184 views
Allowing a gen_fsm to timeout if it receives no messages
Normally if I'd like to have an Erlang process timeout I would use the following construct:
receive
Msg -> ok; %% handle message
after 60000 ->
%% Handle timeout and exit
end.
Is ...
2
votes
3answers
258 views
Best way to generate java with python?
Whats the best way to generate java from python?
I want to write a decorator that generates java code to call a json version of a function (I can use existing decorators to export the json api).
...
2
votes
1answer
465 views
Erlang: Implementing a Finite State Machine using gen_fsm
I'm looking for an example of a simple FSM implemented in Erlang using the gen_fsm from OTP.
1
vote
1answer
59 views
Terminate gen_fsm if no event come
I want my FSM to terminate any time event doesn't come after specified amout of time in every state.
I can achieve such a scenario only in case there is no event after FSM creation by specifing ...
1
vote
4answers
112 views
how to handle termination of gen_fsm
I have a MAIN process that spawn an implementation of a gen_fsm behavior, but this MAIN process is not an implementation of supervisor behavior, its just another module.
Let say the implementation of ...
1
vote
3answers
132 views
Unique atom for gen_fsm:start/3 in Erlang
I'm currently in a project making a gameserver. Every player is supposed have an own process with gen_fsm behavior. To start gen_fsm with start/3 we need a unique atom, currently we use make_ref() and ...
1
vote
1answer
256 views
Can I handle any received message in gen_fsm state callbacks?
I noticed that messages sent to the pid of a gen_fsm process are matched in the state callbacks as events. Is this just accidental or can I rely on this feature?
Normally I would expect general ...
0
votes
1answer
52 views
How to use Boost.MSM is_flag_active inside on_entry?
I would like to use is_flag_active() function inside one of my state's on_entry template function:
struct StBladeDown : public msm::front::state<> {
template<class Event, class FSM>
...
-3
votes
2answers
88 views
Get gen_fsm PID
I start gen_fsm:
start_link() ->
gen_fsm:start_link({global, ?MODULE}, [],
[]).
How can i get it's PID?
Thank you.