在twisted python中使用stdio.StandardIO进行键盘输入
我对与我的多客户端聊天服务器程序相关的扭曲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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
twisted.internet.stdio.StandardIO
不会在任何地方“存储”数据。它是与协议关联的传输。与之关联的协议可以对传递给它的数据执行任何您想要的操作。您可以在 Twisted 文档中找到使用
StandardIO
的两个示例,https ://twistedmatrix.com/documents/current/_downloads/stdin.py 和 https://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.