med_alpa
med_alpa

Reputation: 320

Jboss Hornetq : queue Vs jms-queue

In the messaging subsystem of jboss there are two possibilities to create a queue:

hornetq-server=default/queue= and hornetq-server=default/jms-queue=

What is the difference between these two queues?

In which case we should use "queue" instead of jms-queue?

Thank you

Upvotes: 0

Views: 863

Answers (1)

Rohit
Rohit

Reputation: 2152

HornetQ lets you create Core queues as well as JMS queues. The core queues are suported by its own core api and it is importantly non-JMS api.

So if you use core queues you are tied to HOrnetq and lose the advantages of JMS.

Upvotes: 1

Related Questions