Согласно спецификации JMS2
JMS defines that messages sent by a session to a destination must be received
in the order in which they were sent. This defines a partial ordering
constraint on a session’s input message stream.
JMS does not define order of message receipt across destinations or across
a destination’s messages sent from multiple sessions. This aspect of a
session’s input message stream order is timing-dependent. It is not under
application control.
Также
Although clients loosely view the messages they produce within a session
as forming a serial stream of sent messages, the total ordering of this stream
is not significant. The only ordering that is visible to receiving clients is
the order of messages a session sends to a particular destination.
Several things can affect this order like message priority,
persistent/non persistent etc.
Таким образом, для ответа на ваш вопрос сообщения будут приниматься в том же порядке, в котором они были отправлены с вышеуказанной информацией. Однако порядок доставки сообщений на сервер будет ограничен такими ограничениями, как приоритет сообщений, постоянный / непостоянный и т. Д.