Ruby Sockets 查找消息的发送和接收时间

发布于 2024-10-06 13:57:36 字数 393 浏览 2 评论 0原文

ruby 中的套接字类是否有一个预定义函数,可以让我记录发送和接收消息的时间?

目前我正在发送或接收消息,然后立即记录时间。虽然这有效,但我想知道是否有人知道更好的方法?

这是我目前的做法。这是基于我必须编写的 ClientTCP 类。服务器以类似的方式布局。

def send_mess
    @n.times do
        @client.print(@message)
        @sent_time_arr << (Time.now.to_f)

        sleep(1/@freq)

    end
    @client.close
    return @sent_time_arr
end

您能提供的任何帮助将不胜感激

Is there a predefined function for the socket classes in ruby that will allow me to record the time messages are sent and received?

At the moment I am sending or receiveing the message, and then recording the time immediately afterwards. While this is working I was wondering if anyone knew a better method?

Here is how i do it at the moment. This is based off a ClientTCP class i had to write. The servers are laid out in a similar manner.

def send_mess
    @n.times do
        @client.print(@message)
        @sent_time_arr << (Time.now.to_f)

        sleep(1/@freq)

    end
    @client.close
    return @sent_time_arr
end

Any help you could provide would be greatly appreciated

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

流云如水 2024-10-13 13:57:36

抱歉,标准套接字库无法做到这一点。您可以尝试重写套接字类上的 read()write() 方法,但您现在所做的似乎也有效。

I'm sorry, but there is no way to do this with the standard socket library. You could try to override the read() and write() methods on the socket class, but what you are doing now seems to be working as well.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文