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

查看:14
本文介绍了如何在 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天全站免登陆