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?
|
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?
| |||
|
feedback
|
|
“Timer” module can solve your problem. For example, In otp hehaviour implemention module,
| |||||
feedback
|