QGrpcBidirStream Class

The QGrpcBidirStream class provides the interface to access the bidirectional gRPC stream functionality from gRPC client side. More...

Header: #include <QGrpcBidirStream>
CMake: find_package(Qt6 REQUIRED COMPONENTS Grpc)
target_link_libraries(mytarget PRIVATE Qt6::Grpc)
Since: Qt 6.7
Inherits: QGrpcOperation
Status: Technical Preview

Public Functions

virtual ~QGrpcBidirStream() override
void writeMessage(const QProtobufMessage &message)
(since 6.8) void writesDone()

Signals

Detailed Description

Member Function Documentation

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

Destroys the QGrpcBidirStream object.

[signal] void QGrpcBidirStream::messageReceived()

The signal is emitted when the stream receives an updated value from server.

void QGrpcBidirStream::writeMessage(const QProtobufMessage &message)

Serializes message and sends it to the server.

[since 6.8] void QGrpcBidirStream::writesDone()

Ends the stream from the client side (half-closing). The server is still allowed to send responses after this call.

This function was introduced in Qt 6.8.

© 2024 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.