QGrpcServerStream Class

QGrpcServerStream 类提供了处理服务器流 RPC 的访问权限。更多

Header: #include <QGrpcServerStream>
CMake: find_package(Qt6 REQUIRED COMPONENTS Grpc)
target_link_libraries(mytarget PRIVATE Qt6::Grpc)
Qt 6.7
继承: QGrpcOperation

公共函数

virtual ~QGrpcServerStream() override

信号

详细说明

QGrpcServerStream 类提供了处理服务器流远程过程调用(RPC)的接口,是四种 gRPC服务方法之一。

有关高级概述,请参阅Qt GRPC Client Guide

注: 用户负责管理由Client 接口返回的唯一 RPC 处理程序,确保它们至少在finished 信号发出前存在。收到该信号后,处理程序可以安全地重新分配或销毁。

成员函数文档

[override virtual noexcept] QGrpcServerStream::~QGrpcServerStream()

摧毁QGrpcServerStream.

[signal] void QGrpcServerStream::messageReceived()

当流 RPC 收到来自服务器的新消息时,就会发出该信号。然后就可以使用read() 方法对收到的信息进行反序列化。

© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.