Windows Mobile 7 上的服务

发布于 11-30 13:04 字数 58 浏览 0 评论 0 原文

是否可以使用 XNA/Windows Mobile 7 创建服务?类似于 Android 中的方式吗?

Is it possible to create a service using XNA/Windows Mobile 7? Similar to how you can in Android?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

指尖凝香 2024-12-07 13:04:27

这在 7.0 中实际上是不可能的,但如果您使用(或瞄准)7.1 (Mango),那么您可以考虑使用 后台代理。该链接解释了基类,但您可以根据需要使用 ScheduledTaskAgent、AudioPlayerAgent 和 AudioStreamingAgent。有一个很棒的介绍性教程 这里MSDN。这篇MSDN 帖子

使用后台代理的原因是可以监控不同的应用程序,以确保某个应用程序不会占用所有资源。这意味着电池寿命更加优化,并且资源管理更加完善。

如果您打算使用 Services 以便其他应用可以与您的服务进行通信,那么这是不可能的。出于安全原因,每个应用程序都被沙箱化,目前,这意味着它们无法直接与其他第三方应用程序通信。

This isn't really possible in 7.0, but if you're using (or targetting) 7.1 (Mango), then you can look into using Background Agents. The link explains the base class, but you can use ScheduledTaskAgent, AudioPlayerAgent and AudioStreamingAgent depending on your need. There's a great introductory tutorial here and sample codes on MSDN. There's an XNA specific example in this MSDN post.

The reason Background Agents are used is so that different apps can be monitored to ensure one app isn't hogging all the resources. This means that the battery life is more optimised and there's better resource management.

If you mean to use Services such that others apps can communicate with your service, this isn't really possible. Each app is sandboxed for security reasons and, at the moment, this means that they can't communicate with other third party apps directly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文