Behaviours: gen_server.
This module defines the gen_nb_server behaviour.
Required callback functions: init/1, handle_call/3, handle_cast/2, handle_info/2, terminate/2, sock_opts/0, new_connection/2.
| start_link/4 | Start server listening on IpAddr:Port. |
start_link(CallbackModule, IpAddr, Port, InitParams) -> Result
CallbackModule = atom()IpAddr = string()Port = integer()InitParams = [any()]Result = {ok, pid()} | {error, any()}
Start server listening on IpAddr:Port
Generated by EDoc