Messenger 类的使用是否取代了 AIDL 服务
Messenger 类是构建和构建 AIDL 的替代品吗?使用远程服务 如果是这样,Messenger 是否会处理与处理程序消息的自定义命令关联的方法的线程安全性?当然不, 并且服务跟踪哪个客户端需要哪个方法(线程安全方法),但是 远程服务示例 http://developer.android.com/reference/ android/app/Service.html#RemoteMessengerServiceSample 让我很困惑?
Is Messenger class an alternative of AIDL in building & consuming remote services
and if so does messenger handle thread safety for methods i will associated with custom commands of the handler messages? sure no,
and the service keep track which client needs which method (thread safe methods)but the
sample here for remote service http://developer.android.com/reference/android/app/Service.html#RemoteMessengerServiceSample
made me confused?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在某种程度上,是的。这有点像问划艇是否可以替代游艇。
Handler
的handleMessage()
方法将在主应用程序线程上调用。To an extent, yes. It is a bit like asking if a rowboat is an alternative for a yacht.
The
handleMessage()
method of yourHandler
will be called on the main application thread.