Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 activemq 的新手,并试图将其用作 C#.net 应用程序中的消息传递服务。我能够为持久主题创建发布者/订阅者。但是对于我的应用程序要求,我需要使用持久队列。我没有看到任何可用于 Apache.NMS api 中的持久队列的创建使用者方法。那么,如何使用持久队列创建发布/订阅?
队列本质上是耐用的。订阅队列时,您不必为消费者做任何特别的事情,发送到队列的标记为持久的消息将在代理重新启动后继续存在并保留在队列中。您的队列订阅将按顺序提取消息,并且仅当您确认它们时它们才会从队列中删除。