com.tenable.library.kafkaclient.config.TopicDefinitionDetails.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kastle_2.12 Show documentation
Show all versions of kastle_2.12 Show documentation
A purely functional, effectful, resource-safe, kafka library for Scala.
package com.tenable.library.kafkaclient.config
case class TopicDefinitionDetails(
name: String,
partitions: Int,
replicationFactor: Short,
// Additional, optional config, for reference see: https://kafka.apache.org/documentation/#topicconfigs
properties: Map[String, String] = Map.empty
)