Reputation: 1797
Is there any method/api to get JMS message receipt time (Not delivery, Not publish timestamp) ? Or i need to fix it manually in onMessage(Message msg)
method ?
Upvotes: 0
Views: 376
Reputation: 1797
Yep, there is no "receive timestamp" in JMS api, some more specific JMS implementations may provide this feature, however if you want to stay on specification level - you need to put down this data yourself.
Upvotes: 1