Ejemplo n.º 1
0
 public void WriteAsyncTest()
 {
     var config = new Dictionary <string, object>
     {
         { "bootstrap.servers", "192.168.0.104:9092" }
     };
     IMessageWriter <Book> writer = new KafkaWriter <Book>(config);
     Book book = new Book()
     {
         Acedamics = "ymdl", Author = "atul"
     };
     var res = writer.WriteAsync(book, "topic-book").Result;
 }