io.quarkus.kafka.client.runtime.devui.model.response.KafkaMessagePage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-kafka-client Show documentation
Show all versions of quarkus-kafka-client Show documentation
Connect to Apache Kafka with its native API
package io.quarkus.kafka.client.runtime.devui.model.response;
import java.util.Collection;
import java.util.Map;
public class KafkaMessagePage {
private final Map nextOffsets;
private final Collection messages;
public KafkaMessagePage(Map nextOffsets, Collection messages) {
this.nextOffsets = nextOffsets;
this.messages = messages;
}
public Map getNextOffsets() {
return nextOffsets;
}
public Collection getMessages() {
return messages;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy