Behaviours: gen_server.
Authors: Evgeny Khramtsov (ekhramtsov@process-one.net).
scope() = global | any()
| clear/1 | |
| code_change/3 | |
| compile/1 | |
| delete/3 | |
| dump/1 | |
| handle_call/3 | |
| handle_cast/2 | |
| handle_info/2 | |
| init/1 | |
| insert/4 | |
| lookup/3 | |
| start/1 | |
| start_link/1 | |
| terminate/2 |
clear(Tab::atom()) -> ok
code_change(OldVsn, State, Extra) -> any()
compile(Tab::atom()) -> ok
delete(Tab::atom(), Opt::atom(), Scope::scope()) -> ok
dump(Mod::atom()) -> ok
handle_call(Request, From, State) -> any()
handle_cast(Msg, State) -> any()
handle_info(Info, State) -> any()
init(X1) -> any()
insert(Tab::atom(), Opt::atom(), Scope::scope(), Val::any()) -> ok
lookup(Tab::atom(), Opt::atom(), Scope::scope()) -> {ok, any()} | undefined
start(Tab::atom()) -> ok | {error, already_started | any()}
start_link(Tab::atom()) -> {ok, pid()} | {error, any()}
terminate(Reason, State) -> any()
Generated by EDoc