You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As part of #1181 support was added to set the destination as part of the message.
Unfortunately since the constructors of the jms messages are no longer public, it is no longer possible to specify the destination when creating a message. Also it is not possible to call a withDestination(destination: Destination) method, as this does not exist.
Unless I am missing something it is only possible to create a message with a destination if this message is created from a javax.jms.Message.
It would be cool if we could introduce a withDestination(destination: Destination) method, or perhaps even an all-args factory method for each type of message
The text was updated successfully, but these errors were encountered:
As part of #1181 support was added to set the destination as part of the message.
Unfortunately since the constructors of the jms messages are no longer public, it is no longer possible to specify the destination when creating a message. Also it is not possible to call a
withDestination(destination: Destination)
method, as this does not exist.Unless I am missing something it is only possible to create a message with a destination if this message is created from a
javax.jms.Message
.It would be cool if we could introduce a
withDestination(destination: Destination)
method, or perhaps even an all-args factory method for each type of messageThe text was updated successfully, but these errors were encountered: