在twisted python中使用stdio.StandardIO进行键盘输入

发布于 2024-12-18 13:23:47 字数 245 浏览 0 评论 0原文

我对与我的多客户端聊天服务器程序相关的扭曲Python有疑问。

也就是说,当我们使用 stdio 从键盘提供输入时。 StandardIO,当我们运行反应堆时它存储在哪里?有谁可以给​​我答案吗,拜托。。

I have a doubt in twisted python related to my multiclient chat server program.

that is, when we give input from keyboard using stdio.StandardIO, where it is stored when we run the reactor? Can anybody give me the answer, please..

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

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

发布评论

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

评论(1

寂寞花火° 2024-12-25 13:23:47

twisted.internet.stdio.StandardIO 不会在任何地方“存储”数据。它是与协议关联的传输。与之关联的协议可以对传递给它的数据执行任何您想要的操作。

您可以在 Twisted 文档中找到使用 StandardIO 的两个示例,https ://twistedmatrix.com/documents/current/_downloads/stdin.pyhttps://twistedmatrix.com/documents/current/_downloads/stdiodemo.py

twisted.internet.stdio.StandardIO doesn't "store" data anywhere. It is a transport which you associate with a protocol. The protocol you associate with it can do anything you want with the data delivered to it.

You can find two examples of using StandardIO in the Twisted documentation, https://twistedmatrix.com/documents/current/_downloads/stdin.py and https://twistedmatrix.com/documents/current/_downloads/stdiodemo.py.

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