Behaviours: gen_server.
| start_link/0 | Same as start_link([]). |
| start_link/1 | Start and link to calling process. |
start_link() -> {ok, pid()} | ignore | {error, term()}
Same as start_link([]).
start_link(Opts::list()) -> {ok, pid()} | ignore | {error, term()}
Start and link to calling process.
Generated by EDoc