All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.mguenther.kafka.junit.KeyValueMetadata Maven / Gradle / Ivy

Go to download

Provides an embedded Kafka cluster consisting of Apache ZooKeeper, Apache Kafka Brokers and Kafka Connect workers in distributed mode along with a rich set of convenient accessors and fault injectors to interact with the embedded Kafka cluster. Supports working against external clusters as well.

There is a newer version: 3.6.0
Show newest version
package net.mguenther.kafka.junit;

import lombok.Getter;
import lombok.RequiredArgsConstructor;
import lombok.ToString;

@Getter
@ToString
@RequiredArgsConstructor
public class KeyValueMetadata {

    private final String topic;
    private final int partition;
    private final long offset;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy