open fun rxCreateTopic(topicName: String, partitionCount: Int, replicationFactor: Int): Single<Void>
Creates a new Kafka topic on all Brokers managed by the given Zookeeper instance(s)
topicName - Name of the to-be-created topic
partitionCount - Number of partitions
replicationFactor - Number of replicates. Must be lower or equal to the number of available Brokers
Return
open fun rxCreateTopic(topicName: String, partitionCount: Int, replicationFactor: Int, topicConfig: MutableMap<String, String>): Single<Void>
Creates a new Kafka topic on all Brokers managed by the given Zookeeper instance(s). In contrast to @see io.vertx.rxjava.kafka.admin.AdminUtils#createTopic, one can pass in additional configuration parameters as a map (String -> String).
topicName - Name of the to-be-created topic
partitionCount - Number of partitions
replicationFactor - Number of replicates. Must be lower or equal to the number of available Brokers
topicConfig - map with additional topic configuration parameters
Return