是否可以在 Blackberry 中创建类似守护进程的进程?
我很好奇是否可以编写一个常规的黑莓 UI 应用程序来创建一个守护进程,该进程:
- 在后台运行
- 它没有 UI,任务列表中没有用户可以切换到的图标
- 它可以与主进程交互以安全的方式应用程序(带有 UI)
这可能吗?如果是,编写此类应用程序的最佳方法是什么?
I am curious to know whether it is possible to write a regular blackberry UI application that can create a daemon process that:
- Runs in the background
- It has no UI and no icon in the task list which user can switch to
- It can interact with the main application (with UI) in a secure way
Is this at all possible? If yes what is the best way to write such an app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的。例如,您可以通过从
Application
继承来创建后台应用程序,然后使用RuntimeStore
与 UI 应用程序进行通信。Yes, it is possible. You can, for example, create your background application by inherting from
Application
and then useRuntimeStore
to communicate with the UI application.