io.quarkus.kafka.client.runtime.devui.model.request.KafkaOffsetRequest 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.request;
import java.util.List;
import io.quarkus.kafka.client.runtime.devui.model.Order;
public class KafkaOffsetRequest {
private String topicName;
private List requestedPartitions;
private Order order;
public KafkaOffsetRequest() {
}
public KafkaOffsetRequest(String topicName, List requestedPartitions, Order order) {
this.topicName = topicName;
this.requestedPartitions = requestedPartitions;
this.order = order;
}
public String getTopicName() {
return topicName;
}
public List getRequestedPartitions() {
return requestedPartitions;
}
public Order getOrder() {
return order;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy