Open Lighting Architecture
Latest Git
|
An RPC server.
The RPCServer starts listening on 127.0.0.0:[listen_port] for new client connections. After accepting a new client connection it calls RpcSessionHandlerInterface::NewClient() on the session_handler. For each RPC it then invokes the correct method from the RpcService object.
Finally when each client disconnects, it calls RpcSessionHandlerInterface::ClientRemoved() on the session_handler.
Classes | |
struct | Options |
Options for the RpcServer. More... | |
Public Member Functions | |
RpcServer (ola::io::SelectServerInterface *ss, class RpcService *service, class RpcSessionHandlerInterface *session_handler, const Options &options) | |
Create a new RpcServer. More... | |
bool | Init () |
Initialize the RpcServer. More... | |
ola::network::GenericSocketAddress | ListenAddress () |
Return the address this RpcServer is listening on. More... | |
bool | AddClient (ola::io::ConnectedDescriptor *descriptor) |
Manually attach a new client on the given descriptor. More... | |
ola::rpc::RpcServer::RpcServer | ( | ola::io::SelectServerInterface * | ss, |
class RpcService * | service, | ||
class RpcSessionHandlerInterface * | session_handler, | ||
const Options & | options | ||
) |
Create a new RpcServer.
ss | The SelectServer to use. |
service | The RPCService to expose. |
session_handler | the RpcSessionHandlerInterface to use for client connect / disconnect notifications. |
options | Options for the RpcServer. |
bool ola::rpc::RpcServer::AddClient | ( | ola::io::ConnectedDescriptor * | descriptor | ) |
Manually attach a new client on the given descriptor.
descriptor | The ConnectedDescriptor that the client is using. Ownership of the descriptor is transferred. |
bool ola::rpc::RpcServer::Init | ( | ) |
Initialize the RpcServer.
GenericSocketAddress ola::rpc::RpcServer::ListenAddress | ( | ) |