gen-event
Erlang accept incoming tcp connections dynamically
What I am trying to solve: have an Erlang TCP server that listens on a specific port (the code should reside in some kind of external facing interface/API) and each incoming co开发者_开发技巧nnection[详细]
2023-02-20 13:31 分类:问答Notify and stop gen_event manager atomically
When a particular message is received by my gen_event manager process, I want it to stop after all handlers have handled it and before they get and handle any other events. The only way I could find i[详细]
2023-02-20 00:56 分类:问答Erlang: using gen_event global for a remote manager
I can start my event framework just fine when I register it locally: gen_event:start_link({local, foo_event_container}).[详细]
2023-02-12 12:42 分类:问答Erlang gen_event don't work
I try to write simple gen_event applcation in erlang. My code: -module(test). -behavior(gen_event). -export([notify/0]).[详细]
2023-02-07 06:25 分类:问答