如何在Ruby中设置套接字超时? [英] How do I set the socket timeout in Ruby?

查看:60
本文介绍了如何在Ruby中设置套接字超时?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何设置在Ruby套接字上进行阻止操作的超时时间?

How do you set the timeout for blocking operations on a Ruby socket?

推荐答案

我发现可行的解决方案是使用

The solution I found which appears to work is to use Timeout::timeout:

require 'timeout'
    ...
begin 
    timeout(5) do
        message, client_address = some_socket.recvfrom(1024)
    end
rescue Timeout::Error
    puts "Timed out!"
end

这篇关于如何在Ruby中设置套接字超时?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆