parent
c97a359f85
commit
4ae6b564d3
@ -33,6 +33,8 @@ RpcServer::RpcServer(bool perConnLogs)
|
||||
|
||||
RpcServer::~RpcServer()
|
||||
{
|
||||
close();
|
||||
emit closed();
|
||||
}
|
||||
|
||||
bool RpcServer::registerService(::google::protobuf::Service *service,
|
||||
@ -73,6 +75,7 @@ void RpcServer::incomingConnection(qintptr socketDescriptor)
|
||||
|
||||
connect(this, SIGNAL(notifyClients(int, SharedProtobufMessage)),
|
||||
conn, SLOT(sendNotification(int, SharedProtobufMessage)));
|
||||
connect(this, SIGNAL(closed()), thread, SLOT(quit()));
|
||||
|
||||
thread->start();
|
||||
}
|
||||
|
@ -44,6 +44,7 @@ public:
|
||||
QHostAddress address, quint16 tcpPortNum);
|
||||
|
||||
signals:
|
||||
void closed();
|
||||
void notifyClients(int notifType, SharedProtobufMessage notifData);
|
||||
|
||||
protected:
|
||||
|
Loading…
Reference in New Issue
Block a user