The Status of the gen_server is a list and should be processed once every X seconds. Therefore, I need to execute handle_call({process},State) every X seconds.

What is the best way to have a handle_call executed every X seconds?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

“Timer” module can solve your problem. For example, In otp hehaviour implemention module,

init([]) ->
    timer:send_after(1000,self(),{create_log}), %<====== create an event after 1000ms
    {ok, #state{id=1}}.

handle_info({create_log},#state{id=ID})-> %<=========handle the timer event
    %io:format("handle info~n",[]),
    New_id = ID + 1,
    ls117_single_process_log:error("test log ~p~n",[New_id]),
    timer:send_after(1000,self(),{create_log}),  %<========restart timer
    {noreply,#state{id=New_id}}; 
link|improve this answer
2  
I would recommend use erlang:send_after/3 which has exactly same semantic but more lightweight and don't need timer server started. – Hynek -Pichi- Vychodil Feb 24 at 18:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.