public class io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl<K, V> implements io.vertx.kafka.client.producer.KafkaWriteStream<K, V>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl
  super_class: java.lang.Object
{
  private long maxSize;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private long pending;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private final org.apache.kafka.clients.producer.Producer<K, V> producer;
    descriptor: Lorg/apache/kafka/clients/producer/Producer;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/apache/kafka/clients/producer/Producer<TK;TV;>;

  private io.vertx.core.Handler<java.lang.Void> drainHandler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Handler<Ljava/lang/Void;>;

  private io.vertx.core.Handler<java.lang.Throwable> exceptionHandler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/vertx/core/Handler<Ljava/lang/Throwable;>;

  private final io.vertx.core.Context context;
    descriptor: Lio/vertx/core/Context;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.vertx.kafka.client.common.tracing.ProducerTracer tracer;
    descriptor: Lio/vertx/kafka/client/common/tracing/ProducerTracer;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(io.vertx.core.Vertx, org.apache.kafka.clients.producer.Producer<K, V>, io.vertx.kafka.client.common.KafkaClientOptions);
    descriptor: (Lio/vertx/core/Vertx;Lorg/apache/kafka/clients/producer/Producer;Lio/vertx/kafka/client/common/KafkaClientOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // org.apache.kafka.clients.producer.Producer producer
        start local 3 // io.vertx.kafka.client.common.KafkaClientOptions options
         0: .line 50
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 42
            aload 0 /* this */
            ldc 1048576
            putfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.maxSize:J
         2: .line 51
            aload 0 /* this */
            aload 2 /* producer */
            putfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.producer:Lorg/apache/kafka/clients/producer/Producer;
         3: .line 52
            aload 1 /* vertx */
            invokeinterface io.vertx.core.Vertx.getOrCreateContext:()Lio/vertx/core/Context;
            checkcast io.vertx.core.impl.ContextInternal
            astore 4 /* ctxInt */
        start local 4 // io.vertx.core.impl.ContextInternal ctxInt
         4: .line 53
            aload 0 /* this */
            aload 4 /* ctxInt */
            putfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.context:Lio/vertx/core/Context;
         5: .line 54
            aload 0 /* this */
            aload 4 /* ctxInt */
            invokeinterface io.vertx.core.impl.ContextInternal.tracer:()Lio/vertx/core/spi/tracing/VertxTracer;
            aload 3 /* options */
            invokestatic io.vertx.kafka.client.common.tracing.ProducerTracer.create:(Lio/vertx/core/spi/tracing/VertxTracer;Lio/vertx/kafka/client/common/KafkaClientOptions;)Lio/vertx/kafka/client/common/tracing/ProducerTracer;
            putfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.tracer:Lio/vertx/kafka/client/common/tracing/ProducerTracer;
         6: .line 55
            return
        end local 4 // io.vertx.core.impl.ContextInternal ctxInt
        end local 3 // io.vertx.kafka.client.common.KafkaClientOptions options
        end local 2 // org.apache.kafka.clients.producer.Producer producer
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
            0    7     1     vertx  Lio/vertx/core/Vertx;
            0    7     2  producer  Lorg/apache/kafka/clients/producer/Producer<TK;TV;>;
            0    7     3   options  Lio/vertx/kafka/client/common/KafkaClientOptions;
            4    7     4    ctxInt  Lio/vertx/core/impl/ContextInternal;
    Signature: (Lio/vertx/core/Vertx;Lorg/apache/kafka/clients/producer/Producer<TK;TV;>;Lio/vertx/kafka/client/common/KafkaClientOptions;)V
    MethodParameters:
          Name  Flags
      vertx     
      producer  
      options   

  private int len(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
        start local 1 // java.lang.Object value
         0: .line 58
            aload 1 /* value */
            instanceof byte[]
            ifeq 2
         1: .line 59
            aload 1 /* value */
            checkcast byte[]
            arraylength
            ireturn
         2: .line 60
      StackMap locals:
      StackMap stack:
            aload 1 /* value */
            instanceof java.lang.String
            ifeq 4
         3: .line 61
            aload 1 /* value */
            checkcast java.lang.String
            invokevirtual java.lang.String.length:()I
            ireturn
         4: .line 63
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 1 // java.lang.Object value
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
            0    5     1  value  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      value  

  public io.vertx.core.Future<org.apache.kafka.clients.producer.RecordMetadata> send(org.apache.kafka.clients.producer.ProducerRecord<K, V>);
    descriptor: (Lorg/apache/kafka/clients/producer/ProducerRecord;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=2
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
        start local 1 // org.apache.kafka.clients.producer.ProducerRecord record
         0: .line 69
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.context:Lio/vertx/core/Context;
            invokeinterface io.vertx.core.Context.owner:()Lio/vertx/core/Vertx;
            invokeinterface io.vertx.core.Vertx.getOrCreateContext:()Lio/vertx/core/Context;
            checkcast io.vertx.core.impl.ContextInternal
            astore 2 /* ctx */
        start local 2 // io.vertx.core.impl.ContextInternal ctx
         1: .line 70
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.tracer:Lio/vertx/kafka/client/common/tracing/ProducerTracer;
            ifnonnull 2
            aconst_null
            goto 3
      StackMap locals: io.vertx.core.impl.ContextInternal
      StackMap stack:
         2: aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.tracer:Lio/vertx/kafka/client/common/tracing/ProducerTracer;
            aload 2 /* ctx */
            aload 1 /* record */
            invokevirtual io.vertx.kafka.client.common.tracing.ProducerTracer.prepareSendMessage:(Lio/vertx/core/Context;Lorg/apache/kafka/clients/producer/ProducerRecord;)Lio/vertx/kafka/client/common/tracing/ProducerTracer$StartedSpan;
      StackMap locals:
      StackMap stack: io.vertx.kafka.client.common.tracing.ProducerTracer$StartedSpan
         3: astore 3 /* startedSpan */
        start local 3 // io.vertx.kafka.client.common.tracing.ProducerTracer$StartedSpan startedSpan
         4: .line 71
            aload 2 /* ctx */
            invokeinterface io.vertx.core.impl.ContextInternal.promise:()Lio/vertx/core/impl/future/PromiseInternal;
            astore 4 /* trampolineProm */
        start local 4 // io.vertx.core.Promise trampolineProm
         5: .line 72
            aload 0 /* this */
            aload 1 /* record */
            invokevirtual org.apache.kafka.clients.producer.ProducerRecord.value:()Ljava/lang/Object;
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.len:(Ljava/lang/Object;)I
            istore 5 /* len */
        start local 5 // int len
         6: .line 73
            aload 0 /* this */
            dup
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.pending:J
            iload 5 /* len */
            i2l
            ladd
            putfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.pending:J
         7: .line 74
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.context:Lio/vertx/core/Context;
            aload 0 /* this */
            aload 1 /* record */
            iload 5 /* len */
            aload 3 /* startedSpan */
            aload 2 /* ctx */
            invokedynamic handle(Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl;Lorg/apache/kafka/clients/producer/ProducerRecord;ILio/vertx/kafka/client/common/tracing/ProducerTracer$StartedSpan;Lio/vertx/core/impl/ContextInternal;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl.lambda$0(Lorg/apache/kafka/clients/producer/ProducerRecord;ILio/vertx/kafka/client/common/tracing/ProducerTracer$StartedSpan;Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Promise;)V (7)
                  (Lio/vertx/core/Promise;)V
            invokeinterface io.vertx.core.Context.executeBlocking:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
         8: .line 125
            aload 4 /* trampolineProm */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         9: .line 126
            aload 4 /* trampolineProm */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 5 // int len
        end local 4 // io.vertx.core.Promise trampolineProm
        end local 3 // io.vertx.kafka.client.common.tracing.ProducerTracer$StartedSpan startedSpan
        end local 2 // io.vertx.core.impl.ContextInternal ctx
        end local 1 // org.apache.kafka.clients.producer.ProducerRecord record
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   10     0            this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
            0   10     1          record  Lorg/apache/kafka/clients/producer/ProducerRecord<TK;TV;>;
            1   10     2             ctx  Lio/vertx/core/impl/ContextInternal;
            4   10     3     startedSpan  Lio/vertx/kafka/client/common/tracing/ProducerTracer$StartedSpan;
            5   10     4  trampolineProm  Lio/vertx/core/Promise<Lorg/apache/kafka/clients/producer/RecordMetadata;>;
            6   10     5             len  I
    Signature: (Lorg/apache/kafka/clients/producer/ProducerRecord<TK;TV;>;)Lio/vertx/core/Future<Lorg/apache/kafka/clients/producer/RecordMetadata;>;
    MethodParameters:
        Name  Flags
      record  

  public synchronized io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl<K, V> send(org.apache.kafka.clients.producer.ProducerRecord<K, V>, io.vertx.core.Handler<io.vertx.core.AsyncResult<org.apache.kafka.clients.producer.RecordMetadata>>);
    descriptor: (Lorg/apache/kafka/clients/producer/ProducerRecord;Lio/vertx/core/Handler;)Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
        start local 1 // org.apache.kafka.clients.producer.ProducerRecord record
        start local 2 // io.vertx.core.Handler handler
         0: .line 131
            aload 0 /* this */
            aload 1 /* record */
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.send:(Lorg/apache/kafka/clients/producer/ProducerRecord;)Lio/vertx/core/Future;
            aload 2 /* handler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 132
            aload 0 /* this */
            areturn
        end local 2 // io.vertx.core.Handler handler
        end local 1 // org.apache.kafka.clients.producer.ProducerRecord record
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
            0    2     1   record  Lorg/apache/kafka/clients/producer/ProducerRecord<TK;TV;>;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lorg/apache/kafka/clients/producer/RecordMetadata;>;>;
    Signature: (Lorg/apache/kafka/clients/producer/ProducerRecord<TK;TV;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lorg/apache/kafka/clients/producer/RecordMetadata;>;>;)Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
    MethodParameters:
         Name  Flags
      record   
      handler  

  public void write(org.apache.kafka.clients.producer.ProducerRecord<K, V>, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lorg/apache/kafka/clients/producer/ProducerRecord;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
        start local 1 // org.apache.kafka.clients.producer.ProducerRecord data
        start local 2 // io.vertx.core.Handler handler
         0: .line 137
            aload 0 /* this */
            aload 1 /* data */
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.write:(Lorg/apache/kafka/clients/producer/ProducerRecord;)Lio/vertx/core/Future;
            aload 2 /* handler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 138
            return
        end local 2 // io.vertx.core.Handler handler
        end local 1 // org.apache.kafka.clients.producer.ProducerRecord data
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
            0    2     1     data  Lorg/apache/kafka/clients/producer/ProducerRecord<TK;TV;>;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lorg/apache/kafka/clients/producer/ProducerRecord<TK;TV;>;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
         Name  Flags
      data     
      handler  

  public io.vertx.core.Future<java.lang.Void> write(org.apache.kafka.clients.producer.ProducerRecord<K, V>);
    descriptor: (Lorg/apache/kafka/clients/producer/ProducerRecord;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
        start local 1 // org.apache.kafka.clients.producer.ProducerRecord record
         0: .line 142
            aload 0 /* this */
            aload 1 /* record */
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.send:(Lorg/apache/kafka/clients/producer/ProducerRecord;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Future.mapEmpty:()Lio/vertx/core/Future;
            areturn
        end local 1 // org.apache.kafka.clients.producer.ProducerRecord record
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
            0    1     1  record  Lorg/apache/kafka/clients/producer/ProducerRecord<TK;TV;>;
    Signature: (Lorg/apache/kafka/clients/producer/ProducerRecord<TK;TV;>;)Lio/vertx/core/Future<Ljava/lang/Void;>;
    MethodParameters:
        Name  Flags
      record  

  public io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl<K, V> setWriteQueueMaxSize(int);
    descriptor: (I)Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
        start local 1 // int size
         0: .line 147
            aload 0 /* this */
            iload 1 /* size */
            i2l
            putfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.maxSize:J
         1: .line 148
            aload 0 /* this */
            areturn
        end local 1 // int size
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
            0    2     1  size  I
    Signature: (I)Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
    MethodParameters:
      Name  Flags
      size  

  public synchronized boolean writeQueueFull();
    descriptor: ()Z
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
         0: .line 153
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.pending:J
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.maxSize:J
            lcmp
            iflt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;

  public synchronized io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl<K, V> drainHandler(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 158
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.drainHandler:Lio/vertx/core/Handler;
         1: .line 159
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
            0    2     1  handler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
    MethodParameters:
         Name  Flags
      handler  

  public void end(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 164
            aload 1 /* handler */
            ifnull 2
         1: .line 165
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.context:Lio/vertx/core/Context;
            aload 1 /* handler */
            invokedynamic handle(Lio/vertx/core/Handler;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl.lambda$5(Lio/vertx/core/Handler;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.Context.runOnContext:(Lio/vertx/core/Handler;)V
         2: .line 167
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
            0    3     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.kafka.client.producer.KafkaWriteStream<K, V> initTransactions(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/kafka/client/producer/KafkaWriteStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 171
            aload 0 /* this */
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.initTransactions:()Lio/vertx/core/Future;
            aload 1 /* handler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 172
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
            0    2     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/vertx/kafka/client/producer/KafkaWriteStream<TK;TV;>;
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.core.Future<java.lang.Void> initTransactions();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
         0: .line 177
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.producer:Lorg/apache/kafka/clients/producer/Producer;
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic execute(Lorg/apache/kafka/clients/producer/Producer;)Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl$BlockingStatement;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  ()V
                  org/apache/kafka/clients/producer/Producer.initTransactions()V (9 itf)
                  ()V
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.executeBlocking:(Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl$BlockingStatement;)Lio/vertx/core/Future;
            areturn
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;

  public io.vertx.kafka.client.producer.KafkaWriteStream<K, V> beginTransaction(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/kafka/client/producer/KafkaWriteStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 182
            aload 0 /* this */
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.beginTransaction:()Lio/vertx/core/Future;
            aload 1 /* handler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 183
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
            0    2     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/vertx/kafka/client/producer/KafkaWriteStream<TK;TV;>;
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.core.Future<java.lang.Void> beginTransaction();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
         0: .line 188
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.producer:Lorg/apache/kafka/clients/producer/Producer;
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic execute(Lorg/apache/kafka/clients/producer/Producer;)Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl$BlockingStatement;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  ()V
                  org/apache/kafka/clients/producer/Producer.beginTransaction()V (9 itf)
                  ()V
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.executeBlocking:(Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl$BlockingStatement;)Lio/vertx/core/Future;
            areturn
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;

  public io.vertx.kafka.client.producer.KafkaWriteStream<K, V> commitTransaction(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/kafka/client/producer/KafkaWriteStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 193
            aload 0 /* this */
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.commitTransaction:()Lio/vertx/core/Future;
            aload 1 /* handler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 194
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
            0    2     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/vertx/kafka/client/producer/KafkaWriteStream<TK;TV;>;
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.core.Future<java.lang.Void> commitTransaction();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
         0: .line 199
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.producer:Lorg/apache/kafka/clients/producer/Producer;
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic execute(Lorg/apache/kafka/clients/producer/Producer;)Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl$BlockingStatement;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  ()V
                  org/apache/kafka/clients/producer/Producer.commitTransaction()V (9 itf)
                  ()V
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.executeBlocking:(Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl$BlockingStatement;)Lio/vertx/core/Future;
            areturn
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;

  public io.vertx.kafka.client.producer.KafkaWriteStream<K, V> abortTransaction(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/kafka/client/producer/KafkaWriteStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 204
            aload 0 /* this */
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.abortTransaction:()Lio/vertx/core/Future;
            aload 1 /* handler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 205
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
            0    2     1  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/vertx/kafka/client/producer/KafkaWriteStream<TK;TV;>;
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.core.Future<java.lang.Void> abortTransaction();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
         0: .line 210
            aload 0 /* this */
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.producer:Lorg/apache/kafka/clients/producer/Producer;
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic execute(Lorg/apache/kafka/clients/producer/Producer;)Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl$BlockingStatement;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  ()V
                  org/apache/kafka/clients/producer/Producer.abortTransaction()V (9 itf)
                  ()V
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.executeBlocking:(Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl$BlockingStatement;)Lio/vertx/core/Future;
            areturn
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;

  public io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl<K, V> exceptionHandler(io.vertx.core.Handler<java.lang.Throwable>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 215
            aload 0 /* this */
            aload 1 /* handler */
            putfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.exceptionHandler:Lio/vertx/core/Handler;
         1: .line 216
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
            0    2     1  handler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Throwable;>;)Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.core.Future<java.util.List<org.apache.kafka.common.PartitionInfo>> partitionsFor(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
        start local 1 // java.lang.String topic
         0: .line 221
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.context:Lio/vertx/core/Context;
            invokeinterface io.vertx.core.Context.owner:()Lio/vertx/core/Vertx;
            invokeinterface io.vertx.core.Vertx.getOrCreateContext:()Lio/vertx/core/Context;
            checkcast io.vertx.core.impl.ContextInternal
            astore 2 /* ctx */
        start local 2 // io.vertx.core.impl.ContextInternal ctx
         1: .line 222
            aload 2 /* ctx */
            invokeinterface io.vertx.core.impl.ContextInternal.promise:()Lio/vertx/core/impl/future/PromiseInternal;
            astore 3 /* trampolineProm */
        start local 3 // io.vertx.core.Promise trampolineProm
         2: .line 225
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.context:Lio/vertx/core/Context;
            invokeinterface io.vertx.core.Context.owner:()Lio/vertx/core/Vertx;
            ldc 2000
            aload 3 /* trampolineProm */
            invokedynamic handle(Lio/vertx/core/Promise;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl.lambda$10(Lio/vertx/core/Promise;Ljava/lang/Long;)V (6)
                  (Ljava/lang/Long;)V
            invokeinterface io.vertx.core.Vertx.setTimer:(JLio/vertx/core/Handler;)J
            pop2
         3: .line 229
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.context:Lio/vertx/core/Context;
            aload 0 /* this */
            aload 1 /* topic */
            invokedynamic handle(Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl;Ljava/lang/String;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl.lambda$11(Ljava/lang/String;Lio/vertx/core/Promise;)V (7)
                  (Lio/vertx/core/Promise;)V
            invokeinterface io.vertx.core.Context.executeBlocking:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
         4: .line 233
            aload 3 /* trampolineProm */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         5: .line 235
            aload 3 /* trampolineProm */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 3 // io.vertx.core.Promise trampolineProm
        end local 2 // io.vertx.core.impl.ContextInternal ctx
        end local 1 // java.lang.String topic
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    6     0            this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
            0    6     1           topic  Ljava/lang/String;
            1    6     2             ctx  Lio/vertx/core/impl/ContextInternal;
            2    6     3  trampolineProm  Lio/vertx/core/Promise<Ljava/util/List<Lorg/apache/kafka/common/PartitionInfo;>;>;
    Signature: (Ljava/lang/String;)Lio/vertx/core/Future<Ljava/util/List<Lorg/apache/kafka/common/PartitionInfo;>;>;
    MethodParameters:
       Name  Flags
      topic  

  public io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl<K, V> partitionsFor(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.util.List<org.apache.kafka.common.PartitionInfo>>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
        start local 1 // java.lang.String topic
        start local 2 // io.vertx.core.Handler handler
         0: .line 240
            aload 0 /* this */
            aload 1 /* topic */
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.partitionsFor:(Ljava/lang/String;)Lio/vertx/core/Future;
            aload 2 /* handler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 241
            aload 0 /* this */
            areturn
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.String topic
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
            0    2     1    topic  Ljava/lang/String;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/util/List<Lorg/apache/kafka/common/PartitionInfo;>;>;>;
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/util/List<Lorg/apache/kafka/common/PartitionInfo;>;>;>;)Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
    MethodParameters:
         Name  Flags
      topic    
      handler  

  public io.vertx.core.Future<java.lang.Void> flush();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
         0: .line 246
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.context:Lio/vertx/core/Context;
            invokeinterface io.vertx.core.Context.owner:()Lio/vertx/core/Vertx;
            invokeinterface io.vertx.core.Vertx.getOrCreateContext:()Lio/vertx/core/Context;
            checkcast io.vertx.core.impl.ContextInternal
            astore 1 /* ctx */
        start local 1 // io.vertx.core.impl.ContextInternal ctx
         1: .line 247
            aload 1 /* ctx */
            invokeinterface io.vertx.core.impl.ContextInternal.promise:()Lio/vertx/core/impl/future/PromiseInternal;
            astore 2 /* trampolineProm */
        start local 2 // io.vertx.core.Promise trampolineProm
         2: .line 248
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.context:Lio/vertx/core/Context;
            aload 0 /* this */
            invokedynamic handle(Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl.lambda$12(Lio/vertx/core/Promise;)V (7)
                  (Lio/vertx/core/Promise;)V
            invokeinterface io.vertx.core.Context.executeBlocking:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
         3: .line 251
            aload 2 /* trampolineProm */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         4: .line 252
            aload 2 /* trampolineProm */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 2 // io.vertx.core.Promise trampolineProm
        end local 1 // io.vertx.core.impl.ContextInternal ctx
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    5     0            this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
            1    5     1             ctx  Lio/vertx/core/impl/ContextInternal;
            2    5     2  trampolineProm  Lio/vertx/core/Promise<Ljava/lang/Void;>;
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;

  public io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl<K, V> flush(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
        start local 1 // io.vertx.core.Handler completionHandler
         0: .line 257
            aload 0 /* this */
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.flush:()Lio/vertx/core/Future;
            aload 1 /* completionHandler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 258
            aload 0 /* this */
            areturn
        end local 1 // io.vertx.core.Handler completionHandler
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    2     0               this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
            0    2     1  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
    MethodParameters:
                   Name  Flags
      completionHandler  

  public io.vertx.core.Future<java.lang.Void> close();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
         0: .line 263
            aload 0 /* this */
            lconst_0
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.close:(J)Lio/vertx/core/Future;
            areturn
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;

  public void close(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
        start local 1 // io.vertx.core.Handler completionHandler
         0: .line 268
            aload 0 /* this */
            lconst_0
            aload 1 /* completionHandler */
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.close:(JLio/vertx/core/Handler;)V
         1: .line 269
            return
        end local 1 // io.vertx.core.Handler completionHandler
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    2     0               this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
            0    2     1  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
                   Name  Flags
      completionHandler  

  public io.vertx.core.Future<java.lang.Void> close(long);
    descriptor: (J)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
        start local 1 // long timeout
         0: .line 273
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.context:Lio/vertx/core/Context;
            invokeinterface io.vertx.core.Context.owner:()Lio/vertx/core/Vertx;
            invokeinterface io.vertx.core.Vertx.getOrCreateContext:()Lio/vertx/core/Context;
            checkcast io.vertx.core.impl.ContextInternal
            astore 3 /* ctx */
        start local 3 // io.vertx.core.impl.ContextInternal ctx
         1: .line 274
            aload 3 /* ctx */
            invokeinterface io.vertx.core.impl.ContextInternal.promise:()Lio/vertx/core/impl/future/PromiseInternal;
            astore 4 /* trampolineProm */
        start local 4 // io.vertx.core.Promise trampolineProm
         2: .line 275
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.context:Lio/vertx/core/Context;
            aload 0 /* this */
            lload 1 /* timeout */
            invokedynamic handle(Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl;J)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl.lambda$13(JLio/vertx/core/Promise;)V (7)
                  (Lio/vertx/core/Promise;)V
            invokeinterface io.vertx.core.Context.executeBlocking:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
         3: .line 282
            aload 4 /* trampolineProm */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         4: .line 283
            aload 4 /* trampolineProm */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 4 // io.vertx.core.Promise trampolineProm
        end local 3 // io.vertx.core.impl.ContextInternal ctx
        end local 1 // long timeout
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    5     0            this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
            0    5     1         timeout  J
            1    5     3             ctx  Lio/vertx/core/impl/ContextInternal;
            2    5     4  trampolineProm  Lio/vertx/core/Promise<Ljava/lang/Void;>;
    Signature: (J)Lio/vertx/core/Future<Ljava/lang/Void;>;
    MethodParameters:
         Name  Flags
      timeout  

  public void close(long, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (JLio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
        start local 1 // long timeout
        start local 3 // io.vertx.core.Handler completionHandler
         0: .line 288
            aload 0 /* this */
            lload 1 /* timeout */
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.close:(J)Lio/vertx/core/Future;
            aload 3 /* completionHandler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 289
            return
        end local 3 // io.vertx.core.Handler completionHandler
        end local 1 // long timeout
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    2     0               this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
            0    2     1            timeout  J
            0    2     3  completionHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
    Signature: (JLio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
                   Name  Flags
      timeout            
      completionHandler  

  public org.apache.kafka.clients.producer.Producer<K, V> unwrap();
    descriptor: ()Lorg/apache/kafka/clients/producer/Producer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
         0: .line 293
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.producer:Lorg/apache/kafka/clients/producer/Producer;
            areturn
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
    Signature: ()Lorg/apache/kafka/clients/producer/Producer<TK;TV;>;

  io.vertx.core.Future<java.lang.Void> executeBlocking(io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl$BlockingStatement);
    descriptor: (Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl$BlockingStatement;)Lio/vertx/core/Future;
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
        start local 1 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl$BlockingStatement statement
         0: .line 297
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.context:Lio/vertx/core/Context;
            aload 1 /* statement */
            invokedynamic handle(Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl$BlockingStatement;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl.lambda$14(Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl$BlockingStatement;Lio/vertx/core/Promise;)V (6)
                  (Lio/vertx/core/Promise;)V
            invokeinterface io.vertx.core.Context.executeBlocking:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            areturn
        end local 1 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl$BlockingStatement statement
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
            0    1     1  statement  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl$BlockingStatement;
    Signature: (Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl$BlockingStatement;)Lio/vertx/core/Future<Ljava/lang/Void;>;
    MethodParameters:
           Name  Flags
      statement  final

  public io.vertx.core.Future write(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lio/vertx/core/Future;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast org.apache.kafka.clients.producer.ProducerRecord
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.write:(Lorg/apache/kafka/clients/producer/ProducerRecord;)Lio/vertx/core/Future;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void write(java.lang.Object, io.vertx.core.Handler);
    descriptor: (Ljava/lang/Object;Lio/vertx/core/Handler;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.apache.kafka.clients.producer.ProducerRecord
            aload 2
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.write:(Lorg/apache/kafka/clients/producer/ProducerRecord;Lio/vertx/core/Handler;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.kafka.client.producer.KafkaWriteStream send(org.apache.kafka.clients.producer.ProducerRecord, io.vertx.core.Handler);
    descriptor: (Lorg/apache/kafka/clients/producer/ProducerRecord;Lio/vertx/core/Handler;)Lio/vertx/kafka/client/producer/KafkaWriteStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast org.apache.kafka.clients.producer.ProducerRecord
            aload 2
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.send:(Lorg/apache/kafka/clients/producer/ProducerRecord;Lio/vertx/core/Handler;)Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.kafka.client.producer.KafkaWriteStream flush(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/kafka/client/producer/KafkaWriteStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.flush:(Lio/vertx/core/Handler;)Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.WriteStream setWriteQueueMaxSize(int);
    descriptor: (I)Lio/vertx/core/streams/WriteStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.setWriteQueueMaxSize:(I)Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.kafka.client.producer.KafkaWriteStream setWriteQueueMaxSize(int);
    descriptor: (I)Lio/vertx/kafka/client/producer/KafkaWriteStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.setWriteQueueMaxSize:(I)Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.kafka.client.producer.KafkaWriteStream partitionsFor(java.lang.String, io.vertx.core.Handler);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/kafka/client/producer/KafkaWriteStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.partitionsFor:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.StreamBase exceptionHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/StreamBase;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.WriteStream exceptionHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/WriteStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.kafka.client.producer.KafkaWriteStream exceptionHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/kafka/client/producer/KafkaWriteStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.exceptionHandler:(Lio/vertx/core/Handler;)Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.core.streams.WriteStream drainHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/core/streams/WriteStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.drainHandler:(Lio/vertx/core/Handler;)Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.vertx.kafka.client.producer.KafkaWriteStream drainHandler(io.vertx.core.Handler);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/kafka/client/producer/KafkaWriteStream;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.drainHandler:(Lio/vertx/core/Handler;)Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void lambda$0(org.apache.kafka.clients.producer.ProducerRecord, int, io.vertx.kafka.client.common.tracing.ProducerTracer$StartedSpan, io.vertx.core.impl.ContextInternal, io.vertx.core.Promise);
    descriptor: (Lorg/apache/kafka/clients/producer/ProducerRecord;ILio/vertx/kafka/client/common/tracing/ProducerTracer$StartedSpan;Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Promise;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=7, locals=9, args_size=6
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
        start local 5 // io.vertx.core.Promise prom
         0: .line 76
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.producer:Lorg/apache/kafka/clients/producer/Producer;
            aload 1
            aload 0 /* this */
            iload 2
            aload 3
            aload 4
            aload 5 /* prom */
            invokedynamic onCompletion(Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl;ILio/vertx/kafka/client/common/tracing/ProducerTracer$StartedSpan;Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Promise;)Lorg/apache/kafka/clients/producer/Callback;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Lorg/apache/kafka/clients/producer/RecordMetadata;Ljava/lang/Exception;)V
                  io/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl.lambda$1(ILio/vertx/kafka/client/common/tracing/ProducerTracer$StartedSpan;Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Promise;Lorg/apache/kafka/clients/producer/RecordMetadata;Ljava/lang/Exception;)V (7)
                  (Lorg/apache/kafka/clients/producer/RecordMetadata;Ljava/lang/Exception;)V
            invokeinterface org.apache.kafka.clients.producer.Producer.send:(Lorg/apache/kafka/clients/producer/ProducerRecord;Lorg/apache/kafka/clients/producer/Callback;)Ljava/util/concurrent/Future;
            pop
         1: .line 113
            goto 14
      StackMap locals:
      StackMap stack: java.lang.Throwable
         2: astore 6 /* e */
        start local 6 // java.lang.Throwable e
         3: .line 114
            aload 0 /* this */
            dup
            astore 7
            monitorenter
         4: .line 115
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.exceptionHandler:Lio/vertx/core/Handler;
            ifnull 7
         5: .line 116
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.exceptionHandler:Lio/vertx/core/Handler;
            astore 8 /* exceptionHandler */
        start local 8 // io.vertx.core.Handler exceptionHandler
         6: .line 117
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.context:Lio/vertx/core/Context;
            aload 8 /* exceptionHandler */
            aload 6 /* e */
            invokedynamic handle(Lio/vertx/core/Handler;Ljava/lang/Throwable;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl.lambda$4(Lio/vertx/core/Handler;Ljava/lang/Throwable;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.Context.runOnContext:(Lio/vertx/core/Handler;)V
        end local 8 // io.vertx.core.Handler exceptionHandler
         7: .line 114
      StackMap locals: java.lang.Throwable io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl
      StackMap stack:
            aload 7
            monitorexit
         8: goto 11
      StackMap locals:
      StackMap stack: java.lang.Throwable
         9: aload 7
            monitorexit
        10: athrow
        11: .line 120
      StackMap locals:
      StackMap stack:
            aload 3
            ifnull 13
        12: .line 121
            aload 3
            aload 4
            aload 6 /* e */
            invokevirtual io.vertx.kafka.client.common.tracing.ProducerTracer$StartedSpan.fail:(Lio/vertx/core/Context;Ljava/lang/Throwable;)V
        13: .line 123
      StackMap locals:
      StackMap stack:
            aload 5 /* prom */
            aload 6 /* e */
            invokeinterface io.vertx.core.Promise.fail:(Ljava/lang/Throwable;)V
        end local 6 // java.lang.Throwable e
        14: .line 125
      StackMap locals:
      StackMap stack:
            return
        end local 5 // io.vertx.core.Promise prom
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   15     0              this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
            0   15     5              prom  Lio/vertx/core/Promise<Lorg/apache/kafka/clients/producer/RecordMetadata;>;
            3   14     6                 e  Ljava/lang/Throwable;
            6    7     8  exceptionHandler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.Throwable
           4     8       9  any
           9    10       9  any

  private static void lambda$5(io.vertx.core.Handler, java.lang.Void);
    descriptor: (Lio/vertx/core/Handler;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // java.lang.Void v
         0: .line 165
            aload 0
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
            return
        end local 1 // java.lang.Void v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     1     v  Ljava/lang/Void;

  private static void lambda$10(io.vertx.core.Promise, java.lang.Long);
    descriptor: (Lio/vertx/core/Promise;Ljava/lang/Long;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // java.lang.Long id
         0: .line 226
            aload 0
            ldc "Kafka connect timeout"
            invokeinterface io.vertx.core.Promise.tryFail:(Ljava/lang/String;)Z
            pop
         1: .line 227
            return
        end local 1 // java.lang.Long id
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     1    id  Ljava/lang/Long;

  private void lambda$11(java.lang.String, io.vertx.core.Promise);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Promise;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
        start local 2 // io.vertx.core.Promise prom
         0: .line 230
            aload 2 /* prom */
         1: .line 231
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.producer:Lorg/apache/kafka/clients/producer/Producer;
            aload 1
            invokeinterface org.apache.kafka.clients.producer.Producer.partitionsFor:(Ljava/lang/String;)Ljava/util/List;
         2: .line 230
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
         3: .line 233
            return
        end local 2 // io.vertx.core.Promise prom
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
            0    4     2  prom  Lio/vertx/core/Promise<Ljava/util/List<Lorg/apache/kafka/common/PartitionInfo;>;>;

  private void lambda$12(io.vertx.core.Promise);
    descriptor: (Lio/vertx/core/Promise;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
        start local 1 // io.vertx.core.Promise prom
         0: .line 249
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.producer:Lorg/apache/kafka/clients/producer/Producer;
            invokeinterface org.apache.kafka.clients.producer.Producer.flush:()V
         1: .line 250
            aload 1 /* prom */
            invokeinterface io.vertx.core.Promise.complete:()V
         2: .line 251
            return
        end local 1 // io.vertx.core.Promise prom
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
            0    3     1  prom  Lio/vertx/core/Promise<Ljava/lang/Void;>;

  private void lambda$13(long, io.vertx.core.Promise);
    descriptor: (JLio/vertx/core/Promise;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
        start local 3 // io.vertx.core.Promise prom
         0: .line 276
            lload 1
            lconst_0
            lcmp
            ifle 3
         1: .line 277
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.producer:Lorg/apache/kafka/clients/producer/Producer;
            lload 1
            getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
            invokeinterface org.apache.kafka.clients.producer.Producer.close:(JLjava/util/concurrent/TimeUnit;)V
         2: .line 278
            goto 4
         3: .line 279
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.producer:Lorg/apache/kafka/clients/producer/Producer;
            invokeinterface org.apache.kafka.clients.producer.Producer.close:()V
         4: .line 281
      StackMap locals:
      StackMap stack:
            aload 3 /* prom */
            invokeinterface io.vertx.core.Promise.complete:()V
         5: .line 282
            return
        end local 3 // io.vertx.core.Promise prom
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
            0    6     3  prom  Lio/vertx/core/Promise<Ljava/lang/Void;>;

  private static void lambda$14(io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl$BlockingStatement, io.vertx.core.Promise);
    descriptor: (Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl$BlockingStatement;Lio/vertx/core/Promise;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=2
        start local 1 // io.vertx.core.Promise promise
         0: .line 299
            aload 0
            invokeinterface io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl$BlockingStatement.execute:()V
         1: .line 300
            aload 1 /* promise */
            invokeinterface io.vertx.core.Promise.complete:()V
         2: .line 301
            goto 5
      StackMap locals:
      StackMap stack: java.lang.Exception
         3: astore 2 /* e */
        start local 2 // java.lang.Exception e
         4: .line 302
            aload 1 /* promise */
            aload 2 /* e */
            invokeinterface io.vertx.core.Promise.fail:(Ljava/lang/Throwable;)V
        end local 2 // java.lang.Exception e
         5: .line 304
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.Promise promise
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     1  promise  Lio/vertx/core/Promise<Ljava/lang/Void;>;
            4    5     2        e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     2       3  Class java.lang.Exception

  private void lambda$1(int, io.vertx.kafka.client.common.tracing.ProducerTracer$StartedSpan, io.vertx.core.impl.ContextInternal, io.vertx.core.Promise, org.apache.kafka.clients.producer.RecordMetadata, java.lang.Exception);
    descriptor: (ILio/vertx/kafka/client/common/tracing/ProducerTracer$StartedSpan;Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Promise;Lorg/apache/kafka/clients/producer/RecordMetadata;Ljava/lang/Exception;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=7, args_size=7
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
        start local 5 // org.apache.kafka.clients.producer.RecordMetadata metadata
        start local 6 // java.lang.Exception err
         0: .line 79
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.context:Lio/vertx/core/Context;
            aload 0 /* this */
            aload 6 /* err */
            iload 1
            invokedynamic handle(Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl;Ljava/lang/Exception;I)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl.lambda$2(Ljava/lang/Exception;ILjava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.Context.runOnContext:(Lio/vertx/core/Handler;)V
         1: .line 101
            aload 6 /* err */
            ifnull 6
         2: .line 102
            aload 2
            ifnull 4
         3: .line 103
            aload 2
            aload 3
            aload 6 /* err */
            invokevirtual io.vertx.kafka.client.common.tracing.ProducerTracer$StartedSpan.fail:(Lio/vertx/core/Context;Ljava/lang/Throwable;)V
         4: .line 105
      StackMap locals:
      StackMap stack:
            aload 4
            aload 6 /* err */
            invokeinterface io.vertx.core.Promise.fail:(Ljava/lang/Throwable;)V
         5: .line 106
            goto 9
         6: .line 107
      StackMap locals:
      StackMap stack:
            aload 2
            ifnull 8
         7: .line 108
            aload 2
            aload 3
            invokevirtual io.vertx.kafka.client.common.tracing.ProducerTracer$StartedSpan.finish:(Lio/vertx/core/Context;)V
         8: .line 110
      StackMap locals:
      StackMap stack:
            aload 4
            aload 5 /* metadata */
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
         9: .line 112
      StackMap locals:
      StackMap stack:
            return
        end local 6 // java.lang.Exception err
        end local 5 // org.apache.kafka.clients.producer.RecordMetadata metadata
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0      this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
            0   10     5  metadata  Lorg/apache/kafka/clients/producer/RecordMetadata;
            0   10     6       err  Ljava/lang/Exception;

  private static void lambda$4(io.vertx.core.Handler, java.lang.Throwable, java.lang.Void);
    descriptor: (Lio/vertx/core/Handler;Ljava/lang/Throwable;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=3
        start local 2 // java.lang.Void v3
         0: .line 117
            aload 0
            aload 1
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
            return
        end local 2 // java.lang.Void v3
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     2    v3  Ljava/lang/Void;

  private void lambda$2(java.lang.Exception, int, java.lang.Void);
    descriptor: (Ljava/lang/Exception;ILjava/lang/Void;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=5, locals=8, args_size=4
        start local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
        start local 3 // java.lang.Void v1
         0: .line 80
            aload 0 /* this */
            dup
            astore 4
            monitorenter
         1: .line 83
            aload 1
            ifnull 5
         2: .line 85
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.exceptionHandler:Lio/vertx/core/Handler;
            ifnull 5
         3: .line 86
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.exceptionHandler:Lio/vertx/core/Handler;
            astore 5 /* exceptionHandler */
        start local 5 // io.vertx.core.Handler exceptionHandler
         4: .line 87
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.context:Lio/vertx/core/Context;
            aload 5 /* exceptionHandler */
            aload 1
            invokedynamic handle(Lio/vertx/core/Handler;Ljava/lang/Exception;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl.lambda$3(Lio/vertx/core/Handler;Ljava/lang/Exception;Ljava/lang/Void;)V (6)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.Context.runOnContext:(Lio/vertx/core/Handler;)V
        end local 5 // io.vertx.core.Handler exceptionHandler
         5: .line 91
      StackMap locals: io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.maxSize:J
            ldc 2
            ldiv
            lstore 5 /* lowWaterMark */
        start local 5 // long lowWaterMark
         6: .line 92
            aload 0 /* this */
            dup
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.pending:J
            iload 2
            i2l
            lsub
            putfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.pending:J
         7: .line 93
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.pending:J
            lload 5 /* lowWaterMark */
            lcmp
            ifge 11
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.drainHandler:Lio/vertx/core/Handler;
            ifnull 11
         8: .line 94
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.drainHandler:Lio/vertx/core/Handler;
            astore 7 /* drainHandler */
        start local 7 // io.vertx.core.Handler drainHandler
         9: .line 95
            aload 0 /* this */
            aconst_null
            putfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.drainHandler:Lio/vertx/core/Handler;
        10: .line 96
            aload 0 /* this */
            getfield io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl.context:Lio/vertx/core/Context;
            aload 7 /* drainHandler */
            invokeinterface io.vertx.core.Context.runOnContext:(Lio/vertx/core/Handler;)V
        end local 7 // io.vertx.core.Handler drainHandler
        end local 5 // long lowWaterMark
        11: .line 80
      StackMap locals:
      StackMap stack:
            aload 4
            monitorexit
        12: goto 15
      StackMap locals:
      StackMap stack: java.lang.Throwable
        13: aload 4
            monitorexit
        14: athrow
        15: .line 99
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.lang.Void v1
        end local 0 // io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   16     0              this  Lio/vertx/kafka/client/producer/impl/KafkaWriteStreamImpl<TK;TV;>;
            0   16     3                v1  Ljava/lang/Void;
            4    5     5  exceptionHandler  Lio/vertx/core/Handler<Ljava/lang/Throwable;>;
            6   11     5      lowWaterMark  J
            9   11     7      drainHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
      Exception table:
        from    to  target  type
           1    12      13  any
          13    14      13  any

  private static void lambda$3(io.vertx.core.Handler, java.lang.Exception, java.lang.Void);
    descriptor: (Lio/vertx/core/Handler;Ljava/lang/Exception;Ljava/lang/Void;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=3
        start local 2 // java.lang.Void v2
         0: .line 87
            aload 0
            aload 1
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
            return
        end local 2 // java.lang.Void v2
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     2    v2  Ljava/lang/Void;
}
Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>Ljava/lang/Object;Lio/vertx/kafka/client/producer/KafkaWriteStream<TK;TV;>;
SourceFile: "KafkaWriteStreamImpl.java"
NestMembers:
  io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl$BlockingStatement
InnerClasses:
  public StartedSpan = io.vertx.kafka.client.common.tracing.ProducerTracer$StartedSpan of io.vertx.kafka.client.common.tracing.ProducerTracer
  private abstract BlockingStatement = io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl$BlockingStatement of io.vertx.kafka.client.producer.impl.KafkaWriteStreamImpl
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles