/// <summary>
 ///     An underlying librdkafka client handle that the Producer will use to
 ///     make broker requests. The handle must be from another Producer
 ///     instance (not Consumer or AdminClient).
 /// </summary>
 public DependentProducerBuilder(Handle handle)
 {
     this.Handle = handle;
 }
Ejemplo n.º 2
0
 /// <summary>
 ///     An underlying librdkafka client handle that the AdminClient.
 /// </summary>
 public DependentAdminClientBuilder(Handle handle)
 {
     this.Handle = handle;
 }