Ensuring method ordering in an async method

Hi, I have a question on something. I have something like this:
@Transactional
@Async
Public void persistObjects() {
List<Object> someObjects = apiService.getAllObjects();
repo.saveObjects(someObjects);
otherApiService.loadObjects(someObjects); //How can I make sure this call is only called after saveObjects() is done completely mainly because this method is also currently async for performance benefits?
}
@Transactional
@Async
Public void persistObjects() {
List<Object> someObjects = apiService.getAllObjects();
repo.saveObjects(someObjects);
otherApiService.loadObjects(someObjects); //How can I make sure this call is only called after saveObjects() is done completely mainly because this method is also currently async for performance benefits?
}
5 Replies
JavaBot
JavaBot4w ago
This post has been reserved for your question.
Hey @Kale Vivi! Please use /close or the Close Post button above when your problem is solved. Please remember to follow the help guidelines. This post will be automatically marked as dormant after 300 minutes of inactivity.
TIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here.
straightface
straightface4w ago
the method will execute in same order here unless is saveOjects also async? then you need to block until it finishes @Kale Vivi
Kale Vivi
Kale ViviOP4w ago
saveObjects isn't async. Just realized you're right but one question. if there's an exception or any issue with the save and this is marked as transactional, it would roll back the changes and NOT execute the following load method right?
ayylmao123xdd
ayylmao123xdd4w ago
yea u can also specify at which exception it should rollback @Transactional(rollbackFor=Exception.class)
JavaBot
JavaBot4w ago
💤 Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived. If your question was not answered yet, feel free to re-open this post or create a new one. In case your post is not getting any attention, you can try to use /help ping. Warning: abusing this will result in moderative actions taken against you.

Did you find this page helpful?