Skip to content

Instantly share code, notes, and snippets.

@lhauspie
Created August 4, 2026 14:06
Show Gist options
  • Select an option

  • Save lhauspie/7c67023ca66bdfb38289ab3155669fe5 to your computer and use it in GitHub Desktop.

Select an option

Save lhauspie/7c67023ca66bdfb38289ab3155669fe5 to your computer and use it in GitHub Desktop.
public class OrderService {
public void createOrder(Order order) {
database.save(order);
kafkaProducer.send(
new OrderCreatedEvent(order)
);
emailService.sendConfirmation(order);
paymentService.pay(order);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment