Module ep_monitor_proxy

Forwards monitoring events to process group.

Copyright © (C) 2019, Maxim Fedorov

Behaviours: gen_server.

Authors: Maxim Fedorov (maximfca@gmail.com).

Description

Forwards monitoring events to process group. It's technically possible to avoid using gen_server, and simply do everything in gen_event handler, but this does not play well with supervision.

Data Types

state()

state() = #state{}

Function Index

handle_call/3
handle_cast/2
handle_info/2
init/1
start_link/0 Starts the server.

Function Details

handle_call/3

handle_call(Request, From, State) -> any()

handle_cast/2

handle_cast(Request::term(), State::state()) -> no_return()

handle_info/2

handle_info(Monitor_sample, State) -> any()

init/1

init(X1::[]) -> {ok, state()}

start_link/0

start_link() -> {ok, Pid::pid()} | ignore | {error, Reason::term()}

Starts the server


Generated by EDoc