QGrpcOperation Class

The QGrpcOperation class implements common logic to handle the gRPC communication from the client side. More...

Header: #include <QGrpcOperation>
CMake: find_package(Qt6 REQUIRED COMPONENTS Grpc)
target_link_libraries(mytarget PRIVATE Qt6::Grpc)
Since: Qt 6.5
Inherits: QObject
Inherited By:

QGrpcBidiStream, QGrpcCallReply, QGrpcClientStream, and QGrpcServerStream

Public Functions

bool isFinished() const
const QHash<QByteArray, QByteArray> &metadata() const &
QLatin1StringView method() const
std::optional<T> read() const
(since 6.8) bool read(QProtobufMessage *message) const

Public Slots

void cancel()

Signals

void finished(const QGrpcStatus &status)

Detailed Description

Member Function Documentation

[slot] void QGrpcOperation::cancel()

T.B.A

[signal] void QGrpcOperation::finished(const QGrpcStatus &status)

This signal indicates the end of communication for this call.

If this signal is emitted the respective operation when it's finished with the respective status.

Note: This signal is emitted only once, and in most cases, you will want to disconnect right after receiving it to avoid issues, such as lambda captures not being destroyed after receiving the signal. An easy way to achieve this is by using the Qt::SingleShotConnection ConnectionType.

[noexcept] bool QGrpcOperation::isFinished() const

Returns true when QGrpcOperation finished its workflow, meaning it was finished, canceled, or error occurred, otherwise returns false.

[noexcept] const QHash<QByteArray, QByteArray> &QGrpcOperation::metadata() const &

Getter of the metadata received from the channel. For the HTTP2 channels it usually contains the HTTP headers received from the server.

[noexcept] QLatin1StringView QGrpcOperation::method() const

Getter of the method that this operation was initialized with.

template <typename T, QtProtobuf::if_protobuf_message<T> = true> std::optional<T> QGrpcOperation::read() const

Reads a message from a raw byte array stored within this QGrpcOperation instance.

Returns an optional deserialized message. On failure, std::nullopt is returned.

Note: This function only participates in overload resolution if T is a subclass of QProtobufMessage.

See also read.

[since 6.8] bool QGrpcOperation::read(QProtobufMessage *message) const

Reads a message from a raw byte array which is stored within this QGrpcOperation instance.

The function writes the deserialized value to the message pointer.

If the deserialization is successful, this function returns true. Otherwise, it returns false.

This function was introduced in Qt 6.8.

See also read.

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