请确认此 XMPP 代码不是线程安全的
Posted
技术标签:
【中文标题】请确认此 XMPP 代码不是线程安全的【英文标题】:Please confirm that this XMPP code is not threadsafe 【发布时间】:2009-04-09 03:34:07 【问题描述】:我正在阅读 Smack api 的源代码,方法 XMPPConnection#disconnect 如下所示:
public void disconnect(Presence unavailablePresence)
// If not connected, ignore this request.
if (packetReader == null || packetWriter == null)
return;
shutdown(unavailablePresence);
if (roster != null)
roster.cleanup();
roster = null;
wasAuthenticated = false;
packetWriter.cleanup();
packetWriter = null;
packetReader.cleanup();
packetReader = null;
在我的场景中,我将一个实时 XMPPConnection 存储在一个名为 Session 的类中。 一个单独的执行线程将尝试通过调用 Session#shutdown() 来关闭我的 XMPPConnection 实例。正如我所看到的,我将不得不合作地告诉 Session 通过获取互斥锁或其他东西来关闭 XMPPConnection。对吗?
【问题讨论】:
【参考方案1】:看起来是known bug。
【讨论】:
感谢您指出错误。在调用它之前,我不可避免地要在外部同步。和平。以上是关于请确认此 XMPP 代码不是线程安全的的主要内容,如果未能解决你的问题,请参考以下文章