QGrpcCallReply Class

The QGrpcCallReply class contains data for asynchronous call of gRPC client API. 更多...

头: #include <QGrpcCallReply>
CMake: find_package(Qt6 REQUIRED COMPONENTS Grpc)
target_link_libraries(mytarget PRIVATE Qt6::Grpc)
Since: Qt 6.5
继承: QGrpcOperation

公共函数

void subscribe (QObject * receiver , Func1 && finishCallback , Func2 && errorCallback , Qt::ConnectionType type = Qt::AutoConnection)
void subscribe (QObject * receiver , Func1 && finishCallback , Qt::ConnectionType type = Qt::AutoConnection)

重实现公共函数

virtual void abort () override

详细描述

The QGrpcCallReply object is owned by the client object that created it. QGrpcCallReply can be used by QAbstractGrpcChannel implementations to control call workflow and abort calls if possible in the event of QGrpcCallReply::abort being called by a library user.

成员函数文档编制

[override virtual] void QGrpcCallReply:: abort ()

Aborts this reply and try to abort call in channel.

template <typename Func1, typename Func2> void QGrpcCallReply:: subscribe ( QObject * receiver , Func1 && finishCallback , Func2 && errorCallback , Qt::ConnectionType type = Qt::AutoConnection)

Convenience function to connect the finishCallback and errorCallback of receiver to the QGrpcCallReply::finished and the QGrpcCallReply::errorOccurred signals with the given connection type .

Calling this function is equivalent to the following:

QObject::connect(this, &QGrpcCallReply::finished, receiver,
                 std::forward<Func1>(finishCallback), type);
QObject::connect(this, &QGrpcCallReply::errorOccurred, receiver,
                 std::forward<Func2>(errorCallback), type);
					

template <typename Func1> void QGrpcCallReply:: subscribe ( QObject * receiver , Func1 && finishCallback , Qt::ConnectionType type = Qt::AutoConnection)

Convenience function to connect the finishCallback of receiver to the QGrpcCallReply::finished signal with given connection type .

Calling this function is equivalent to the following:

QObject::connect(this, &QGrpcCallReply::finished, receiver,
                 std::forward<Func1>(finishCallback), type);