| '$handle_undefined_function'/2 | |
| async_do/1 | |
| async_do/2 | |
| async_do/3 | |
| do/1 | runs a given command in the agent's context. |
| do/2 | runs a given command in the agent's context, under a given namespace. |
| do/3 | |
| start_link/1 | boots an agent server; requires a full rebar3 state already. |
'$handle_undefined_function'(Cmd, X2) -> any()
async_do(Command::atom()) -> ok
async_do(Namespace::atom(), Command::atom()) -> ok
async_do(Namespace::atom(), Command::atom(), Args::string()) -> ok
do(Command::atom() | string()) -> ok | {error, term()}
runs a given command in the agent's context.
do(Namespace::atom(), Command::atom() | string()) -> ok | {error, term()}
runs a given command in the agent's context, under a given namespace.
do(Namespace::atom(), Command::atom(), Args::string()) -> ok | {error, term()}
start_link(State::rebar_state:t()) -> {ok, pid()}
boots an agent server; requires a full rebar3 state already.
By default (within rebar3), this isn't called; rebar_prv_shell
enters and transforms into this module
Generated by EDoc