private EcoMessageProducer producer;
private static boolean running;
public StressClient() throws Exception {
this.producer = new EcoMessageProducer("coap://"+HOST+":"+PORT+"/"+TARGET);
this.socket = new DatagramSocket();
socket.setReceiveBufferSize(10*1000*1000);
socket.setSendBufferSize(10*1000*1000);
}