We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
我想测试这样一种情况:循环3次,每次创建5个mqtt连接。 自增计数器: mqtt-connect: 结果: 在单次线程组中自增id没有起作用 即:在第一次循环中,线程池创建了三个client并有对应的命名clientId,在后面的两次循环中,创建的client跟第一次的clientId完全一样,这与预期的每次循环创建新的连接不符。
The text was updated successfully, but these errors were encountered:
补充:用的最新的2.0版本插件,eqmx版本V4.4
Sorry, something went wrong.
In the current implementation, the established connection in the same thread will be reused. Please try creating connections in multiple threads
No branches or pull requests
我想测试这样一种情况:循环3次,每次创建5个mqtt连接。
自增计数器:
mqtt-connect:
结果:
在单次线程组中自增id没有起作用
即:在第一次循环中,线程池创建了三个client并有对应的命名clientId,在后面的两次循环中,创建的client跟第一次的clientId完全一样,这与预期的每次循环创建新的连接不符。
The text was updated successfully, but these errors were encountered: