我如何通过Python中的服务器套接字重复发送消息?

发布于 2024-12-04 21:28:24 字数 143 浏览 1 评论 0原文

如标题,我想知道如何重复发送消息。

就像使用“while”函数一样简单吗?
我想做的是,每当有客户加入时。我想让服务器端,不断地向客户端发送数据。如果可能的话,有一种方法可以调整我希望多久发送下一条消息。

任何帮助将不胜感激,谢谢。

Like the title, i would like to know how to send messages repeatedly.

Is it as simple as using a "while" function?
What I'm trying to do is, when ever a client joins. I would like to have the server end, constantly send the data to the client. And if possible a way to adjust how soon i want the next message sent out.

Any help would be appreciated, thanks.

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

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

发布评论

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

评论(2

内心激荡 2024-12-11 21:28:24

导入套接字,使用socket.socket 如果有帮助的话。我弄清楚了如何重复发送数据。现在的问题是,我需要知道如何打破循环。每当有新客户端加入服务器时 - Shane O

而不是做

while True:

Do

inloop = True;
while inloop:
    bla
    if(something):
        inloop = false;

import socket, using socket.socket If that helps any. I figured out how to repeatedly send the data. Thing is now, is that, i need to know how to break from the loop. when ever a new client joins the server - Shane O

Instead of doing

while True:

Do

inloop = True;
while inloop:
    bla
    if(something):
        inloop = false;
○闲身 2024-12-11 21:28:24

了解 SocketServer 模块,特别是 ThreadingMixIn 允许您处理多个客户端 同时地。它是一个Python库,可以阅读SocketServer.py源文件来了解它是如何实现的。

Read about the SocketServer module, in particular the ThreadingMixIn to allow you to handle multiple clients simultaneously. It is a Python library, and the SocketServer.py source file can be read to see how it is implemented.

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