如何在服务器端计算每个用户的预定时间计算并立即通知客户端的各个用户?
我的场景是
用户 A 已被分配任务。他已经知道该任务的时间线。在客户端,一旦用户 A 单击并下载文件以开始该任务,服务器应该执行某种计时器并立即通知客户端用户 A 剩余的到期时间。
以便用户可以意识到他/她的任务时间的减少。
将来可能有数百个用户可以连接到服务器,并且必须实现上述场景。所有与时间相关的计算都是基于服务器当前时间,
任何人都可以指导我如何实现这一点。
My scenario is
User A has been given a task. He already knows time line for that task.On client side Once the userA click and download a file to begin that task ,server should do some kind of timers and notify client user A about the remaining due time instantly.
so that user can aware of the decreaseing time of his/her task.
In future there may be hundred's of user can connect with server and has to acheive the above scenario.All time related calultion is based on server current time
can anybody guide me on how to implement this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Salaam,
您需要在 Servlet 中为每个用户实现一个计时器。
注意以下事项:
希望它有帮助,
Salaam,
You need to implement a timer at your Servlet, per each user.
Care about the following:
Hope it helps,