Behaviours: gen_server.
| code_change/3 | |
| handle_call/3 | |
| handle_cast/2 | |
| handle_info/2 | |
| init/1 | |
| start_link/3 | |
| start_link/4 | |
| start_link/5 | |
| start_link/6 | |
| terminate/2 |
code_change(OldVsn, State, Extra) -> any()
handle_call(Arbitrary, From, Cache) -> any()
handle_cast(Req, Cache) -> any()
handle_info(Info, State) -> any()
init(Cache) -> any()
start_link(Name, Mod, Fun) -> any()
start_link(Name, Mod, Fun, Size) -> any()
start_link(Name, Mod, Fun, Size, Time) -> any()
start_link(Name, Mod, Fun, Size, Time, Policy) -> any()
terminate(Reason, Cache) -> any()
Generated by EDoc