Behaviours: supervisor.
| init/1 | The init/1 supervisor callback, initializes the supervisor. |
| service_registered/1 | Notifies connected client sockets of a new service so they can initialize it. |
| start_link/0 | Starts the PB server supervisor. |
| start_socket/0 | Starts a PB socket server. |
| stop/1 | Stops the PB server supervisor. |
init(X1::list()) -> {ok, {{RestartStrategy, MaxR, MaxT}, [ChildSpec]}} | ignore
The init/1 supervisor callback, initializes the supervisor.
service_registered(Mod::module()) -> ok
Notifies connected client sockets of a new service so they can
initialize it. Called internally by riak_api_pb_service:register/3.
start_link() -> {ok, pid()} | {error, term()}
Starts the PB server supervisor.
start_socket() -> {ok, pid()} | {error, term()}
Starts a PB socket server.
stop(S::term()) -> ok
Stops the PB server supervisor.
Generated by EDoc