
org.reactivecommons.async.kafka.communications.topology.TopicCustomization Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of async-kafka Show documentation
Show all versions of async-kafka Show documentation
Abstract your broker with semantic async messages
package org.reactivecommons.async.kafka.communications.topology;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.Map;
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class TopicCustomization {
private String topic;
private int partitions;
private short replicationFactor;
private Map config;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy