通常,如果我想让Erlang进程超时,我会使用以下结构:
receive
Msg -> ok; %% handle message
after 60000 ->
%% Handle timeout and exit
end.
在gen_fsm等OTP服务器中是否存在类似的机制?我将使用我的应用程序为每个活动会话生成gen_fsm,并且如果在收到消息后超过了不活动的超时值,则希望退出它们。
如果需要,我可以编写自己的自定义过程,但如果可能的话,我更愿意使用gen_fsm。
答案 0 :(得分:11)
我挖了一些,找到了我自己问题的答案。
在消息处理程序“Result”中有一个可选的第四个参数,你可以使用它是一个超时。
这样:
some_fsm_state({set, Val}, State) ->
NewState = do(Val, State),
{next_state, another_fsm_state, NewState, 5000};
another_fsm_state(timeout, State) ->
handle_timeout(State).
another_fsm_state({set, Val}, State) ->
%% more code that handles this state.
一旦调用some_fsm_state,它将转换到下一个状态“another_fsm_state”,超时为5000ms。如果在5000ms内没有收到新消息,则调用another_fsm_state(timeout,State)。
聪明的OTP程序员。 :)
应该注意的是,结果元组中的第四个元素可以是休眠的。有关更多信息,请参阅Erlang文档。