Behaviours: gen_server.
| start/0 | Starts the server. |
| start_link/0 | Starts the server. |
| stop/0 | Stops the server. |
start() -> {ok, Pid::pid()} | ignore | {error, Reason::term()}
Starts the server
start_link() -> {ok, Pid::pid()} | ignore | {error, Reason::term()}
Starts the server
stop() -> ok | {error, Reason::term()}
Stops the server
Generated by EDoc