如何使用 asp.net 编写 monotorrent 客户端应用程序
我正在尝试使用 monotorrent 库和 asp.net 编写一个客户端应用程序。 monotorrent 提供了一个 clientapp 示例,但由于我使用的是 asp.net,所以我需要知道如何保持引擎始终运行并获取反馈,例如下载速率和..
我尝试使用 . NET 4,但线程不断随机关闭(我当然认为)。 有没有办法让引擎运行的线程始终工作? 或者知道在哪里寻找在网络应用程序中实现客户端的想法?
I'm trying to write a client app using monotorrent library with asp.net.
there is a clientapp sample provided by monotorrent but since I'm using asp.net I need to know how to keep the engine running all the time and get feedback, like download rate and ..
I tried to use the Task class provided in .NET 4, but the thread keeps shutting down randomly ( I think of course ).
Is there a way that I can keep the thread which engine is running in, always working?
or any idea on where to look for implementing the client in web app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是不可能的,因为 ASP.NET 工作进程会不时地被回收。您需要的是桌面应用程序或 Windows 服务。然后构建一个 WCF 服务来与您的 ASP.net 应用程序进行通信。
Thats impossible, as the ASP.NET worker process is recycled from time to time. What do you need is a desktop application or a windows service. And then build an WCF service to communicate with you ASP.net application.