I want to start a gen_server that additionally, will perform one action every minute.
What is the best way to schedule that?
|
I want to start a gen_server that additionally, will perform one action every minute. What is the best way to schedule that? | ||||
|
feedback
|
|
You have two easy alternatives, use I would recommend something along the following lines in your
Instead of | |||||
feedback
|
|
There is actually a built-in mechanism within gen_server to accomplish the same thing.
If the third element of response tuple of the init, handle_call, handle_cast or handle_info methods in the
init(Args) ->
... % Start first timer
{ok, SomeState, 20000}. %% 20000 is the timeout interval
handle_call(Input, From, State) ->
... % Do something
... % Do something else
{reply, SomeState, 20000}. %% 20000 is the timeout interval
handle_cast(Input, State) ->
... % Do something
... % Do something else
{noreply, SomeState, 20000}. %% 20000 is the timeout interval
%% A timeout message is sent to the gen_server to be handled in handle_info %%
handle_info(timeout, State) ->
... % Do the action
... % Start new timer
{noreply, SomeState, 20000}. %% "timeout" can be sent again after 20000 ms
| |||||||||||
feedback
|
|
There is also the http://erldocs.com/R14B02/stdlib/timer.html?i=8&search=timer#cancel_timer/1 | |||
|
feedback
|