Behaviours: gen_server.
start/3 | Starts a new RPC server instance that receives requests via a specified queue and dispatches them to a specified handler function. |
start_link/3 | Starts, and links to, a new RPC server instance that receives requests via a specified queue and dispatches them to a specified handler function. |
stop/1 | Stops an exisiting RPC server. |
start(Connection, Queue, Fun::RpcHandler) -> RpcServer
Starts a new RPC server instance that receives requests via a specified queue and dispatches them to a specified handler function. This function returns the pid of the RPC server that can be used to stop the server.
start_link(Connection, Queue, Fun::RpcHandler) -> RpcServer
Starts, and links to, a new RPC server instance that receives requests via a specified queue and dispatches them to a specified handler function. This function returns the pid of the RPC server that can be used to stop the server.
stop(Pid::RpcServer) -> ok
Stops an exisiting RPC server.
Generated by EDoc, Jun 7 2017, 14:11:45.