reloader

Erlang module for automatically reloading modified modules during development.

Erlang module for automatically reloading modified modules during development.

Functions


all_changed() -> [atom()]

Return a list of beam modules that have changed.

code_change(Vsn::_OldVsn, State, Extra::_Extra) -> State

gen_server code_change callback (trivial).

handle_call(Req::Args, From, State) -> tuple()

gen_server callback.

handle_cast(Req::Cast, State) -> tuple()

gen_server callback.

handle_info(Info, State) -> tuple()

gen_server callback.

init(X1::[]) -> {ok, State}

gen_server init, opens the server in an initial state.

is_changed(M::atom()) -> boolean()

true if the loaded module is a beam with a vsn attribute and does not match the on-disk beam file, returns false otherwise.

reload_modules(Modules::[atom()]) -> [{module, atom()} | {error, term()}]

code:purge/1 and code:load_file/1 the given list of modules in order, return the results of code:load_file/1.

start() -> ServerRet

Start the reloader.

start_link() -> ServerRet

Start the reloader.

stop() -> ok

Stop the reloader.

terminate(Reason, State) -> ok

gen_server termination callback.

Matthew Dempsky matthew@mochimedia.com
View Functions