IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)

QMqttConnectionProperties Class

The QMqttConnectionProperties class represents configuration options a QMqttClient can pass to the server when invoking QMqttClient::connectToHost().

This class was introduced in Qt 5.12.

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

QMqttConnectionProperties Class

Detailed Description

Connection properties are part of the MQTT 5.0 specification and cannot be used when connecting with a lower protocol level. See QMqttClient::ProtocolVersion for more information.

Member Function Documentation

 

QByteArray QMqttConnectionProperties::authenticationData() const

Returns the authentication data.

See Also

QString QMqttConnectionProperties::authenticationMethod() const

Returns the authentication method.

See Also

quint32 QMqttConnectionProperties::maximumPacketSize() const

Returns the maximum packet size the client can receive.

See Also

quint16 QMqttConnectionProperties::maximumReceive() const

Returns the maximum amount of QoS 1 and QoS 2 publications that the client (when obtained from QMqttClient::connectionProperties()) or the server (when obtained from QMqttClient::serverConnectionProperties()) is willing to process concurrently for this session.

See Also

See also setMaximumReceive()

quint16 QMqttConnectionProperties::maximumTopicAlias() const

Returns the maximum topic alias ID the client can use.

See Also

bool QMqttConnectionProperties::requestProblemInformation() const

Returns whether the client should receive problem information.

See Also

bool QMqttConnectionProperties::requestResponseInformation() const

Returns whether the client should receive response information.

See Also

quint32 QMqttConnectionProperties::sessionExpiryInterval() const

Returns the session expiry interval.

See Also

void QMqttConnectionProperties::setAuthenticationData(const QByteArray &authData)

Sets the authentication data to authData.

Authentication data can only be used if an authentication method has been specified.

See Also

void QMqttConnectionProperties::setAuthenticationMethod(const QString &authMethod)

Sets the authentication method to authMethod.

See Also

void QMqttConnectionProperties::setMaximumPacketSize(quint32 packetSize)

Sets the maximum packet size to packetSize. The maximum packet size specifies the maximum size one packet can contain. This includes the packet header and its properties.

If no maximum packet size is specified, no limit is imposed beyond the limitations of the protocol itself.

See Also

See also maximumPacketSize()

void QMqttConnectionProperties::setMaximumReceive(quint16 maximumReceive)

Sets the maximum amount of QoS 1 and QoS 2 publications that the client is willing to process concurrently for this session to maximumReceive.

A maximum receive value of 0 is not allowed.

See Also

See also maximumReceive()

void QMqttConnectionProperties::setMaximumTopicAlias(quint16 alias)

Sets the maximum topic alias to alias. The maximum topic alias specifies the highest value that the client will accept from the server. The client uses this value to limit the number of topic aliases it is willing to hold for the connection.

The default value is 0. 0 indicates that the client does not accept any topic aliases on this connection.

See Also

See also maximumTopicAlias()

void QMqttConnectionProperties::setRequestProblemInformation(bool problem)

Sets the request problem information to problem. A client uses this to request the server to return additional information in case of failure. Types of failure include connection and message management on the server side.

The default value is false, which indicates that the client must not receive any problem information for anything but connection management. The server still may send problem information for connection handling. If the value is true, the server may return problem information.

Problem information is available in user properties or reason strings of the property classes.

See Also

void QMqttConnectionProperties::setRequestResponseInformation(bool response)

Sets the request response information to response. A client uses this to request the server to return response information after the connection request has been handled.

The default value is false, which indicates that the client must not return any response information. If the value is true, the server may return response information, but is not enforced to do so.

See Also

void QMqttConnectionProperties::setSessionExpiryInterval(quint32 expiry)

Sets the session expiry interval to expiry. The session expiry interval specifies the number of seconds a server holds information on the client state after a connection has been closed.

The default value is 0, which specifies that the session is closed when the network connection ends. If the value is specified as maximum of quint32, then the session does not expire.

See Also

void QMqttConnectionProperties::setUserProperties(const QMqttUserProperties &properties)

Sets the user properties of the connection to properties.

The default value is to not send any user information.

See Also

See also userProperties()

QMqttUserProperties QMqttConnectionProperties::userProperties() const

Returns the user properties for the connection.

See Also

See also setUserProperties()

Vous avez aimé ce tutoriel ? Alors partagez-le en cliquant sur les boutons suivants : Viadeo Twitter Facebook Share on Google+