Behaviours: gen_server.
code_change/3 | |
get_config/1 | |
get_error/1 | |
handle_call/3 | |
handle_cast/2 | |
handle_info/2 | |
init/1 | |
is_issuer/2 | |
is_ready/1 | |
start_link/2 | |
stop/1 | |
terminate/2 | |
update_and_get_keys/1 | |
update_config/1 |
code_change(OldVsn, State, Extra) -> any()
get_config(Pid::pid()) -> {ok, Config::map()}
get_error(Pid::pid()) -> {ok, term()}
handle_call(Request, From, State) -> any()
handle_cast(Msg, State) -> any()
handle_info(X1, State) -> any()
init(X1) -> any()
is_issuer(Issuer::binary(), Pid::pid()) -> true | false
is_ready(Pid::pid()) -> true | false
start_link(Id::binary(), Config::map()) -> {ok, pid()}
stop(Pid::pid()) -> ok
terminate(Reason, State) -> any()
update_and_get_keys(Pid::pid()) -> {ok, Keys::[map()]}
update_config(Pid::pid()) -> ok
Generated by EDoc