Einrückung so, wie es IntelliJ will... grundlagen/simple-producer--COMMITS--2025-02 grundlagen/simple-producer--generics grundlagen/simple-producer--generics4some
authorKai Moritz <kai@juplo.de>
Thu, 20 Feb 2025 17:59:22 +0000 (18:59 +0100)
committerKai Moritz <kai@juplo.de>
Thu, 20 Feb 2025 17:59:22 +0000 (18:59 +0100)
src/main/java/de/juplo/kafka/ExampleProducer.java

index 772fc2b..c3db7e7 100644 (file)
@@ -66,9 +66,9 @@ public class ExampleProducer
     final long time = System.currentTimeMillis();
 
     final ProducerRecord<String, String> record = new ProducerRecord<>(
-        topic,  // Topic
-        key,    // Key
-        value   // Value
+      topic,  // Topic
+      key,    // Key
+      value   // Value
     );
 
     producer.send(record, (metadata, e) ->
@@ -79,37 +79,37 @@ public class ExampleProducer
         // HANDLE SUCCESS
         produced++;
         log.debug(
-            "{} - Sent message {}={}, partition={}, offset={}, timestamp={}, latency={}ms",
-            id,
-            key,
-            value,
-            metadata.partition(),
-            metadata.offset(),
-            metadata.timestamp(),
-            now - time
+          "{} - Sent message {}={}, partition={}, offset={}, timestamp={}, latency={}ms",
+          id,
+          key,
+          value,
+          metadata.partition(),
+          metadata.offset(),
+          metadata.timestamp(),
+          now - time
         );
       }
       else
       {
         // HANDLE ERROR
         log.error(
-            "{} - ERROR for message {}={}, latency={}ms: {}",
-            id,
-            key,
-            value,
-            now - time,
-            e.toString()
+          "{} - ERROR for message {}={}, latency={}ms: {}",
+          id,
+          key,
+          value,
+          now - time,
+          e.toString()
         );
       }
     });
 
     long now = System.currentTimeMillis();
     log.trace(
-        "{} - Queued message {}={}, latency={}ms",
-        id,
-        key,
-        value,
-        now - time
+      "{} - Queued message {}={}, latency={}ms",
+      id,
+      key,
+      value,
+      now - time
     );
   }
 
@@ -148,10 +148,10 @@ public class ExampleProducer
     }));
 
     log.info(
-        "Running ExampleProducer: broker={}, topic={}, client-id={}",
-        broker,
-        topic,
-        clientId);
+      "Running ExampleProducer: broker={}, topic={}, client-id={}",
+      broker,
+      topic,
+      clientId);
     instance.run();
   }
 }