Copyright © 2017-2018 Marc Worrell
Behaviours: gen_server.
Authors: Marc Worrell (marc@worrell.nl).
code_change/3 | |
compile_all/0 | |
filewatcher_changes_observer/2 | Observer for the filewatcher changes notification. |
handle_call/3 | |
handle_cast/2 | |
handle_changes/1 | |
handle_info/2 | |
ignore_action/2 | Ignore action commands, useful to prevent duplication of actions during longer runs or as side effects of running actions. |
ignore_dir/2 | Ignore directories that are busy, for example a directory in lib-src where currently a Makefile is running. |
init/1 | |
reload_module/1 | |
reload_modules/0 | |
start_link/0 | |
terminate/2 |
code_change(Vsn, State, Extra) -> any()
compile_all() -> ok | {error, term()}
filewatcher_changes_observer(Filewatcher_changes::#filewatcher_changes{}, Ctx::term()) -> ok
Observer for the filewatcher changes notification.
handle_call(X1, From, State) -> any()
handle_cast(Msg, State) -> any()
handle_changes(Es::map()) -> ok
handle_info(Msg, State) -> any()
ignore_action(Action::term(), IsIgnore::boolean()) -> ok
Ignore action commands, useful to prevent duplication of actions during longer runs or as side effects of running actions.
ignore_dir(Dir::file:filename_all(), IsIgnore::boolean()) -> ok
Ignore directories that are busy, for example a directory in lib-src where currently a Makefile is running.
init(X1) -> any()
reload_module(Module::module()) -> ok | {error, term()}
reload_modules() -> ok | {error, term()}
start_link() -> {ok, pid()} | {error, term()}
terminate(Reason, State) -> any()
Generated by EDoc