Ejemplo n.º 1
0
 public static IConfluentClient CreateConfluentClient(String baseUrl)
 {
     var settings = new KafkaClientSettings
     {
         KafkaBaseUrl = baseUrl
     };
     IConfluentClient client = new ConfluentClient(settings);
     return client;
 }