Copyright © (C) 2019-2022, Maxim Fedorov
Behaviours: gen_server.
handler() = {module(), atom(), term()} | file:filename_all() | {fd, io:device()} | io:device()
| handle_call/3 | |
| handle_cast/2 | |
| handle_info/2 | |
| init/1 | |
| start_link/2 | Starts cluster-wide monitor with the specified handler, and links it to the caller. |
handle_call(Request, From, State) -> any()
handle_cast(Request, State) -> any()
handle_info(X1, State) -> any()
init(X1) -> any()
start_link(Handler::handler(), Fields::[atom()]) -> {ok, Pid::pid()} | {error, Reason::term()}
Starts cluster-wide monitor with the specified handler, and links it to the caller. Use 'record_info(fields, monitor_sample)' to fetch all fields.
Generated by EDoc