QKnxNetIpConnectionStateResponseProxy Class

The QKnxNetIpConnectionStateResponseProxy class provides the means to read a KNXnet/IP connection state response from the generic QKnxNetIpFrame class and to create a connection state response frame based on the information. 更多...

頭: #include <QKnxNetIpConnectionStateResponseProxy>
qmake: QT += knx

公共類型

class Builder

公共函數

QKnxNetIpConnectionStateResponseProxy (const QKnxNetIpFrame & frame )
quint8 channelId () const
bool isValid () const
QKnxNetIp::Error status () const

靜態公共成員

QKnxNetIpConnectionStateResponseProxy::Builder builder ()

詳細描述

A KNXnet/IP client reqularly sends a connection state request frame, QKnxNetIpConnectionStateRequestProxy , to the KNXnet/IP server's control endpoint to check the state of a connection established to the server. The server responds immediately with a connection state response frame.

In most programs, this class will not be used directly. Instead, the QKnxNetIpTunnel or QKnxNetIpDeviceManagement class is used to establish a functional connection to a KNXnet/IP server.

注意: When using QKnxNetIpConnectionStateResponseProxy, care must be taken to ensure that the referenced KNXnet/IP frame outlives the proxy on all code paths, lest the proxy ends up referencing deleted data.

The following code sample illustrates how to read the connection state response information sent by a KNXnet/IP server:

auto netIpFrame = QKnxNetIpFrame::fromBytes(...);
const QKnxNetIpConnectionStateResponseProxy proxy(netIpFrame);
if (!proxy.isValid())
    return;
auto chanId = proxy.channelId();
auto status = proxy.status();
					

另請參閱 builder (), QKnxNetIpConnectionStateRequestProxy ,和 Qt KNXnet/IP Connection Classes .

成員函數文檔編製

QKnxNetIpConnectionStateResponseProxy:: QKnxNetIpConnectionStateResponseProxy (const QKnxNetIpFrame & frame )

Constructs a proxy object to read the connection state response information carried by the specified KNXnet/IP frame frame .

[static] QKnxNetIpConnectionStateResponseProxy::Builder QKnxNetIpConnectionStateResponseProxy:: builder ()

Returns a builder object to create a KNXnet/IP connection state response frame.

quint8 QKnxNetIpConnectionStateResponseProxy:: channelId () const

Returns the ID of the communication channel prepared by the KNXnet/IP server.

bool QKnxNetIpConnectionStateResponseProxy:: isValid () const

返迴 true if the frame contains initialized values and is in itself valid, otherwise returns false . A valid KNXnet/IP frame consists of at least a valid header and a size in bytes corresponding to the total size of the KNXnet/IP frame header.

另請參閱 QKnxNetIpFrameHeader::totalSize ().

QKnxNetIp::Error QKnxNetIpConnectionStateResponseProxy:: status () const

Returns the state of the connection channel established to a KNXnet/IP server.