Behaviours: gen_server.
| code_change/3 | |
| deps/2 | |
| ensure_started/0 | |
| flush/0 | |
| handle_call/3 | |
| handle_cast/2 | |
| handle_info/2 | |
| init/1 | |
| resolve_module/2 | |
| resolve_source/2 | Resolves "Name" erl module to a path, given list of paths to search. |
| terminate/2 |
code_change(OldVsn, State, Extra) -> any()
deps(File::file:filename_all(), Opts) -> Attributes
Opts = [Opt, ...]Opt = {includes, [file:filename_all()]} | {macros, [file:filename_all()]}Attributes = #{include => [file:filename_all()], missing_include_file => [file:filename_all()], missing_include_lib => [file:filename_all()], behaviour => [atom()], parse_transform => [atom()], is_behaviour => boolean()}
ensure_started() -> ok
flush() -> any()
handle_call(X1, From, State) -> any()
handle_cast(X1, State) -> any()
handle_info(Request, State) -> any()
init(X1) -> any()
resolve_module(Mod, Paths) -> any()
resolve_source(Name::atom() | file:filename_all(), Dirs::[file:filename_all()]) -> {true, file:filename_all()} | false
Resolves "Name" erl module to a path, given list of paths to search. Caches result for subsequent requests.
terminate(Reason, State) -> any()
Generated by EDoc