Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试为 Openfire XMPP 服务器构建一个外部组件,但我对 Tinder 和 Whack 有点困惑。Tinder 似乎是较新的库,并且具有 Ignite Realtime 推荐的 AbstractComponent 接口而不是标准组件,但是,每当有人谈论构建外部组件时,他们似乎都在使用 Whack 库。
我应该使用 Tinder 还是 Whack?还是两者兼而有之?
非常感谢
Tinder 利用 Whack 库并将组件包装在一个抽象组件接口中,因此如果您不需要,您不必实现处理所有类型数据包的所有方法。
查看天气示例的来源。
还值得查看 whack 源以了解它如何处理数据包,因为这是最终连接到您的服务器并发送数据包的内容。
我个人使用 whack 的 externalcomponent manager 并使用 tinder 设置一个抽象组件,这正是 weatherabstract 示例所做的。
这是最好的起点。