QGrpcCredentials Class▲
-
Header: QGrpcCredentials
-
Since: Qt 6.5
-
CMake:
find_package(Qt6 REQUIRED COMPONENTS Grpc)
target_link_libraries(mytarget PRIVATE Qt6::Grpc)
-
Inherits: QAbstractGrpcCredentials
I. Detailed Description▲
II. Member Function Documentation▲
II-1. [explicit] QGrpcCredentials::QGrpcCredentials(const Call &call, const Channel &channel)▲
Constructs QGrpcCredentials with call and channel credentials. The Call type must be the base of QGrpcCallCredentials and the Channel type must be the base of QGrpcChannelCredentials.
II-2. [explicit] QGrpcCredentials::QGrpcCredentials(const Call &call)▲
Constructs QGrpcCredentials with call credentials. The Call type must be the base of QGrpcCallCredentials.
II-3. [explicit] QGrpcCredentials::QGrpcCredentials(const Channel &channel)▲
Constructs QGrpcCredentials with channel credentials. The Channel type must be the base of QGrpcChannelCredentials.
II-4. [override virtual] QGrpcCredentials::~QGrpcCredentials()▲
Destroys the QGrpcCredentials object.
II-5. [override virtual] QGrpcCredentialMap QGrpcCredentials::callCredentials() const▲
Reimplements: QAbstractGrpcCredentials::callCredentials() const.
Returns a map of call credentials by calling QGrpcCallCredentials::operator() on a stored Call object.
II-6. [override virtual] QGrpcCredentialMap QGrpcCredentials::channelCredentials() const▲
Reimplements: QAbstractGrpcCredentials::channelCredentials() const.
Returns a map of channel credentials by calling QGrpcChannelCredentials::channelCredentials() on a stored Channel object.