java.io.EOFException with paho

后端 未结 7 1458
慢半拍i
慢半拍i 2021-02-09 11:23

i want to make stress test on mosquitto, so i create some code as below

for (int i = 0; i < 800; i++) {
        final int j = i;
        Thread t = new Thread         


        
7条回答
  •  独厮守ぢ
    2021-02-09 12:00

    Sometimes it happen when you will try to send large data set. Try to decrease dataset size. It solved problem in my case.

提交回复
热议问题