Skip to content

Instantly share code, notes, and snippets.

@woprzech
Created June 1, 2017 07:19
Show Gist options
  • Save woprzech/95949c7ee656f41fc962d354438ff7b7 to your computer and use it in GitHub Desktop.
Save woprzech/95949c7ee656f41fc962d354438ff7b7 to your computer and use it in GitHub Desktop.
void consumeMainTopicWithPostponedRetry() {
while (true) {
Message message = takeNextMessage("main_topic");
try {
process(message);
} catch (Exception ex) {
publishTo("retry_topic");
LOGGER.warn("Message processing failure. Will try once again in the future.", ex);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment