Guest User

Untitled

a guest
Sep 30th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. while(true) {
  2. ConsumerRecords<String, String> records = consumer.poll(Duration.ofMillis(100));
  3.  
  4. records.forEach(record -> {
  5. System.out.println(record.key() + " - " + record.value());
  6. });
  7. }
Add Comment
Please, Sign In to add comment