Re: Kafka net Synchronous Producer

2015-09-25 Thread gharatmayuresh15
If you are using the new producer, the send api returns a future on which you can do a .get() to be sure that the message has made it to Kafka and than do another send. I am not sure if the .Net producer that you are referring to exposes this functionality. Thanks, Mayuresh Sent from my iPho

Kafka net Synchronous Producer

2015-09-25 Thread Sugumar J
Dear all, I am trying to send message to kafka using kafka-Net (c#). I want to send message synchronously i am using below code to achieve this *var x= client.SendMessageAsync("dynamictopic1", new[] { message });* *var response = await x;* Now the response contains the offset details If i am