Behaviours: gen_server.
| cmd/1 | |
| cmd/2 | |
| cmd/3 | |
| code_change/3 | |
| handle_call/3 | |
| handle_cast/2 | |
| handle_info/2 | |
| init/1 | |
| shutdown/1 | |
| start_link/0 | |
| start_link/1 | |
| start_link/2 | |
| subscribe/1 | |
| subscribe/2 | |
| terminate/2 |
cmd(Cmd) -> any()
cmd(NameOrPid, Cmd) -> any()
cmd(NameOrPid::atom() | pid(), Cmd::list() | binary(), Timeout::integer()) -> integer() | binary() | {error, Reason::term()} | [integer() | binary() | {error, Reason::term()}]
code_change(OldVsn, State, Extra) -> any()
handle_call(Msg, From, State) -> any()
handle_cast(Msg, State) -> any()
handle_info(Info, State) -> any()
init(X1) -> any()
shutdown(NameOrPid) -> any()
start_link() -> {ok, pid()} | {error, term()}
start_link(Name::atom() | list()) -> {ok, pid()} | {error, term()}
start_link(Name::atom(), Opts::list()) -> {ok, pid()} | {error, term()}
subscribe(Channel::list() | binary()) -> reference() | {error, term()}
subscribe(NameOrPid::atom() | pid(), Channel::list() | binary()) -> reference() | {error, term()}
terminate(Reason, State) -> any()
Generated by EDoc, Jul 15 2016, 16:59:34.