Advertisement
Guest User

Untitled

a guest
Feb 14th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. Producer
  2.  
  3. sendEmail(String body){
  4. message.put(email, body)
  5. producer.sendMessage(message)
  6. }
  7.  
  8. Cnsumer
  9.  
  10. handleDelivery() {
  11. Map map = deserialize(body);
  12. String email = map.get("email");
  13. emailService.sendEmail(email, to, from ...)
  14. }
  15.  
  16. EmailService
  17. //aici is alea cu smtp, initializari etc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement