Is it possible to create a daemon-like process in Blackberry?
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 pos开发者_JAVA百科sible? If yes what is the best way to write such an app?
Yes, it is possible. You can, for example, create your background application by inherting from Application
and then use RuntimeStore
to communicate with the UI application.
精彩评论