QGrpcClientStream Class

The QGrpcClientStream class provides the interface to access the client-side gRPC stream functionality from gRPC client side. More...

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

Public Functions

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

Detailed Description

Member Function Documentation

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

Destroys the QGrpcClientStream object.

void QGrpcClientStream::writeMessage(const QProtobufMessage &message)

Serializes message and sends it to the server.

[since 6.8] void QGrpcClientStream::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.