Flex AMF Remoting 请求到 Java 服务器的排队策略
Flex Remoting 服务需要向Java 服务器执行同步任务。我需要在 AMF 请求当前正在进行时对 AMF 请求进行排队,一旦完成,就按 FIFO 顺序执行其他请求。我想到了 JMS,但用例不需要订阅者/发布者模式。一个简单的同步队列就足够了。请建议设计和实施策略。
The Flex Remoting service to a Java server need to do a synchronized task. I need to queue the AMF requests while one is currently in progress and once it's done then execute others in FIFO order. I thought of JMS but the use-case does not require a subscriber/publisher pattern. A simple synchronous queue would suffice. Kindly suggest design & implementation strategies.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解的话,不太明白……为什么当第一个请求的结果事件被触发时不执行第二个请求?其他的也是如此吗?
Not quite if I understood..why not executing the second request when the result event of the first one is triggered? And so on for the other ones?