Skip to content

Commit 387ee16

Browse files
authored
Add JavaDoc to KafkaContainer
1 parent 5ae9c49 commit 387ee16

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

modules/kafka/src/main/java/org.testcontainers.containers/KafkaContainer.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
import java.util.stream.Stream;
66

7+
/**
8+
* This container wraps Confluent Kafka and Zookeeper (optionally)
9+
*
10+
*/
711
public class KafkaContainer extends GenericContainer<KafkaContainer> {
812

913
public static final int KAFKA_PORT = 9092;
@@ -79,4 +83,4 @@ public void start() {
7983
public void stop() {
8084
Stream.<Runnable>of(super::stop, proxy::stop).parallel().forEach(Runnable::run);
8185
}
82-
}
86+
}

0 commit comments

Comments
 (0)