13.3.2 socket函数介绍
Posted DS小龙哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了13.3.2 socket函数介绍相关的知识,希望对你有一定的参考价值。
13.3.2 socket函数介绍
(1) 构造函数
QBluetoothSocket(QBluetoothServiceInfo::Protocol socketType, QObject *parent = Q_NULLPTR)
QBluetoothSocket(QObject *parent = Q_NULLPTR)
(2) 中止当前连接并重置套接字
void QBluetoothSocket::abort() //关闭连接
void QBluetoothSocket::close() //关闭连接
与disconnectFromService()不同,此函数立即关闭套接字,放弃写入缓冲区中未发出的任何数据。
注意:在android上,中止套接字需要与Android线程进行异步交互。 因此,关联的disconnect()和stateChanged()信号将被延迟,直到线程完成关闭。
(3)
以上是关于13.3.2 socket函数介绍的主要内容,如果未能解决你的问题,请参考以下文章
我的Android进阶之旅NDK开发之在C++代码中使用Android Log打印日志,打印出C++的函数耗时以及代码片段耗时详情