I am trying to continue while loop for 3 times. If I get data from server the loop should break. But in the below code while loop terminates after responding one time. What should I do?
@i = 0
while @i < 3
udp_socket.send req_param[:msg], req_param[:flag], req_param[:url], req_param[:port]
@i +=1
puts "#{@i}"
if udp_socket.recvfrom(100)
break
end
end
for j in 0..1
resp = udp_socket.recvfrom(100)
puts "resp:#{resp.inspect}"
end
udp_socket.close
return resp
recvfrom
(inherited from the parentIPSocket
) would block until it gets data (unless nonblock option is set). Which means that it would be a non-falsy return, and break. It will always wait until there is data and break.Perhaps you meant to non-block? - calling the
recvfrom_nonblock
method instead?