Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. @KafkaListener(topic = ...)
  2. public void l1(...) {
  3. doListen(...);
  4. }
  5.  
  6. @KafkaListener(topic = ...)
  7. public void l2(...) {
  8. doListen(...);
  9. }
  10.  
  11. @KafkaListener(topic = ...)
  12. public void l3(...) {
  13. doListen(...);
  14. }
  15.  
  16. private void doListen(...) {
  17. ...
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement