我写了一个关于使用pyxmpp2与其他客户端聊天的演示,但是当客户端闲置大约5分钟时,服务器将与客户端断开连接,openfire无法配置超时,因此我决定在5分钟内发送在线消息令我困惑的问题是什么时候发送prensense消息?
import pyxmpp2
class EchoBot(EventHandler, XMPPFeatureHandler):
"""Echo Bot implementation."""
def __init__(self, my_jid, settings):
version_provider = VersionProvider(settings)
self.client = Client(my_jid, [self, version_provider], settings)
@event_handler(AuthorizedEvent)
def handle_authorized(self,event):
presence = Presence(to_jid ="....",stanza_type = "available")
self.client.stream.send(presence)
def run(self):
"""Request client connection and start the main loop."""
self.client.connect()
self.client.run()
def disconnect(self):
""""""
self.client.disconnect()
def keepconnect(self):
presence = Presence(to_jid ="....",stanza_type = "available")
self.client.stream.send(presence)
print "send presence"
....
bot = McloudBot(JID(mcloudbotJID), settings)
try:
bot.run()
t = threading.Thread(target=bot.run())
timer=threading.Timer(5,bot.keepconnect())
t.start()
timer.start()
except KeyboardInterrupt:
bot.disconnect()
但似乎不起作用......
答案 0 :(得分:0)
结帐
http://community.igniterealtime.org/docs/DOC-2053
这详细说明了OF中的dissconnect idle属性,您可以将其设置为以毫秒为单位的值
在基于会话的通信中,断开空闲客户端是非常重要的。它与客户意外关闭有关,而不仅仅是空闲。
如上所述,您可以在客户端实施ping或心跳包发送。也许查看空白IQ请求的pidgin实现。
希望这能引导你朝着正确的方向前进。
詹姆斯