Skip to content

Instantly share code, notes, and snippets.

@tanapoln
Last active September 1, 2017 11:46
Show Gist options
  • Save tanapoln/6716d456e05fcc9fbc6700420f54ab6f to your computer and use it in GitHub Desktop.
Save tanapoln/6716d456e05fcc9fbc6700420f54ab6f to your computer and use it in GitHub Desktop.
@Transactional
public void updateAllFriends() {
Collection<User> users = loadAllUsers();
for (User user : users) {
Collection<User> friends = fetchFriends(user);
user.getFriends().addAll(friends);
user.setLastUpdateTime(new Date());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment