Behaviours: gen_server.
| close_all_sessions/0 | |
| code_change/3 | |
| get_session/1 | |
| get_session_list/0 | |
| handle_call/3 | |
| handle_cast/2 | |
| handle_info/2 | |
| init/1 | |
| new_session/1 | |
| session_terminating/1 | |
| start_link/0 | |
| stop/0 | |
| terminate/2 |
close_all_sessions() -> ok
code_change(OldVsn, State, Extra) -> any()
get_session(ID::uuid:uuid()) -> {ok, pid()}
get_session_list() -> {ok, Sessions::list()}
handle_call(Request, From, State) -> any()
handle_cast(Msg, State) -> any()
handle_info(Info, State) -> any()
init(X1) -> any()
new_session(ProviderId::binary()) -> {ok, pid()}
session_terminating(ID::binary()) -> ok
start_link() -> {ok, pid()}
stop() -> ok
terminate(Reason, State) -> any()
Generated by EDoc