public class examples.SomeDatabaseServiceVertxEBProxy implements examples.SomeDatabaseService
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: examples.SomeDatabaseServiceVertxEBProxy
  super_class: java.lang.Object
{
  private io.vertx.core.Vertx _vertx;
    descriptor: Lio/vertx/core/Vertx;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String _address;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private io.vertx.core.eventbus.DeliveryOptions _options;
    descriptor: Lio/vertx/core/eventbus/DeliveryOptions;
    flags: (0x0002) ACC_PRIVATE

  private boolean closed;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  public void <init>(io.vertx.core.Vertx, java.lang.String);
    descriptor: (Lio/vertx/core/Vertx;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // examples.SomeDatabaseServiceVertxEBProxy this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // java.lang.String address
         0: .line 54
            aload 0 /* this */
            aload 1 /* vertx */
            aload 2 /* address */
            aconst_null
            invokespecial examples.SomeDatabaseServiceVertxEBProxy.<init>:(Lio/vertx/core/Vertx;Ljava/lang/String;Lio/vertx/core/eventbus/DeliveryOptions;)V
         1: .line 55
            return
        end local 2 // java.lang.String address
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.SomeDatabaseServiceVertxEBProxy this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lexamples/SomeDatabaseServiceVertxEBProxy;
            0    2     1    vertx  Lio/vertx/core/Vertx;
            0    2     2  address  Ljava/lang/String;
    MethodParameters:
         Name  Flags
      vertx    
      address  

  public void <init>(io.vertx.core.Vertx, java.lang.String, io.vertx.core.eventbus.DeliveryOptions);
    descriptor: (Lio/vertx/core/Vertx;Ljava/lang/String;Lio/vertx/core/eventbus/DeliveryOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // examples.SomeDatabaseServiceVertxEBProxy this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // java.lang.String address
        start local 3 // io.vertx.core.eventbus.DeliveryOptions options
         0: .line 57
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 58
            aload 0 /* this */
            aload 1 /* vertx */
            putfield examples.SomeDatabaseServiceVertxEBProxy._vertx:Lio/vertx/core/Vertx;
         2: .line 59
            aload 0 /* this */
            aload 2 /* address */
            putfield examples.SomeDatabaseServiceVertxEBProxy._address:Ljava/lang/String;
         3: .line 60
            aload 0 /* this */
            aload 3 /* options */
            putfield examples.SomeDatabaseServiceVertxEBProxy._options:Lio/vertx/core/eventbus/DeliveryOptions;
         4: .line 62
            aload 0 /* this */
            getfield examples.SomeDatabaseServiceVertxEBProxy._vertx:Lio/vertx/core/Vertx;
            invokeinterface io.vertx.core.Vertx.eventBus:()Lio/vertx/core/eventbus/EventBus;
            ldc Lio/vertx/serviceproxy/ServiceException;
            new io.vertx.serviceproxy.ServiceExceptionMessageCodec
            dup
            invokespecial io.vertx.serviceproxy.ServiceExceptionMessageCodec.<init>:()V
            invokeinterface io.vertx.core.eventbus.EventBus.registerDefaultCodec:(Ljava/lang/Class;Lio/vertx/core/eventbus/MessageCodec;)Lio/vertx/core/eventbus/EventBus;
            pop
         5: .line 63
            goto 7
      StackMap locals: examples.SomeDatabaseServiceVertxEBProxy io.vertx.core.Vertx java.lang.String io.vertx.core.eventbus.DeliveryOptions
      StackMap stack: java.lang.IllegalStateException
         6: pop
         7: .line 64
      StackMap locals:
      StackMap stack:
            return
        end local 3 // io.vertx.core.eventbus.DeliveryOptions options
        end local 2 // java.lang.String address
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.SomeDatabaseServiceVertxEBProxy this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lexamples/SomeDatabaseServiceVertxEBProxy;
            0    8     1    vertx  Lio/vertx/core/Vertx;
            0    8     2  address  Ljava/lang/String;
            0    8     3  options  Lio/vertx/core/eventbus/DeliveryOptions;
      Exception table:
        from    to  target  type
           4     5       6  Class java.lang.IllegalStateException
    MethodParameters:
         Name  Flags
      vertx    
      address  
      options  

  public void save(java.lang.String, io.vertx.core.json.JsonObject, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/json/JsonObject;Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // examples.SomeDatabaseServiceVertxEBProxy this
        start local 1 // java.lang.String collection
        start local 2 // io.vertx.core.json.JsonObject document
        start local 3 // io.vertx.core.Handler result
         0: .line 68
            aload 0 /* this */
            getfield examples.SomeDatabaseServiceVertxEBProxy.closed:Z
            ifeq 3
         1: .line 69
            aload 3 /* result */
            new java.lang.IllegalStateException
            dup
            ldc "Proxy is closed"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 70
            return
         3: .line 72
      StackMap locals:
      StackMap stack:
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            astore 4 /* _json */
        start local 4 // io.vertx.core.json.JsonObject _json
         4: .line 73
            aload 4 /* _json */
            ldc "collection"
            aload 1 /* collection */
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            pop
         5: .line 74
            aload 4 /* _json */
            ldc "document"
            aload 2 /* document */
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Lio/vertx/core/json/JsonObject;)Lio/vertx/core/json/JsonObject;
            pop
         6: .line 76
            aload 0 /* this */
            getfield examples.SomeDatabaseServiceVertxEBProxy._options:Lio/vertx/core/eventbus/DeliveryOptions;
            ifnull 7
            new io.vertx.core.eventbus.DeliveryOptions
            dup
            aload 0 /* this */
            getfield examples.SomeDatabaseServiceVertxEBProxy._options:Lio/vertx/core/eventbus/DeliveryOptions;
            invokespecial io.vertx.core.eventbus.DeliveryOptions.<init>:(Lio/vertx/core/eventbus/DeliveryOptions;)V
            goto 8
      StackMap locals: io.vertx.core.json.JsonObject
      StackMap stack:
         7: new io.vertx.core.eventbus.DeliveryOptions
            dup
            invokespecial io.vertx.core.eventbus.DeliveryOptions.<init>:()V
      StackMap locals:
      StackMap stack: io.vertx.core.eventbus.DeliveryOptions
         8: astore 5 /* _deliveryOptions */
        start local 5 // io.vertx.core.eventbus.DeliveryOptions _deliveryOptions
         9: .line 77
            aload 5 /* _deliveryOptions */
            ldc "action"
            ldc "save"
            invokevirtual io.vertx.core.eventbus.DeliveryOptions.addHeader:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/eventbus/DeliveryOptions;
            pop
        10: .line 78
            aload 0 /* this */
            getfield examples.SomeDatabaseServiceVertxEBProxy._vertx:Lio/vertx/core/Vertx;
            invokeinterface io.vertx.core.Vertx.eventBus:()Lio/vertx/core/eventbus/EventBus;
            aload 0 /* this */
            getfield examples.SomeDatabaseServiceVertxEBProxy._address:Ljava/lang/String;
            aload 4 /* _json */
            aload 5 /* _deliveryOptions */
            aload 3 /* result */
            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
                  examples/SomeDatabaseServiceVertxEBProxy.lambda$0(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.eventbus.EventBus.send:(Ljava/lang/String;Ljava/lang/Object;Lio/vertx/core/eventbus/DeliveryOptions;Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/EventBus;
            pop
        11: .line 85
            return
        end local 5 // io.vertx.core.eventbus.DeliveryOptions _deliveryOptions
        end local 4 // io.vertx.core.json.JsonObject _json
        end local 3 // io.vertx.core.Handler result
        end local 2 // io.vertx.core.json.JsonObject document
        end local 1 // java.lang.String collection
        end local 0 // examples.SomeDatabaseServiceVertxEBProxy this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   12     0              this  Lexamples/SomeDatabaseServiceVertxEBProxy;
            0   12     1        collection  Ljava/lang/String;
            0   12     2          document  Lio/vertx/core/json/JsonObject;
            0   12     3            result  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
            4   12     4             _json  Lio/vertx/core/json/JsonObject;
            9   12     5  _deliveryOptions  Lio/vertx/core/eventbus/DeliveryOptions;
    Signature: (Ljava/lang/String;Lio/vertx/core/json/JsonObject;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
            Name  Flags
      collection  
      document    
      result      

  public examples.SomeDatabaseService foo(java.lang.String, io.vertx.core.json.JsonObject, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/json/JsonObject;Lio/vertx/core/Handler;)Lexamples/SomeDatabaseService;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // examples.SomeDatabaseServiceVertxEBProxy this
        start local 1 // java.lang.String collection
        start local 2 // io.vertx.core.json.JsonObject document
        start local 3 // io.vertx.core.Handler result
         0: .line 88
            aload 0 /* this */
            getfield examples.SomeDatabaseServiceVertxEBProxy.closed:Z
            ifeq 3
         1: .line 89
            aload 3 /* result */
            new java.lang.IllegalStateException
            dup
            ldc "Proxy is closed"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 90
            aload 0 /* this */
            areturn
         3: .line 92
      StackMap locals:
      StackMap stack:
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            astore 4 /* _json */
        start local 4 // io.vertx.core.json.JsonObject _json
         4: .line 93
            aload 4 /* _json */
            ldc "collection"
            aload 1 /* collection */
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/json/JsonObject;
            pop
         5: .line 94
            aload 4 /* _json */
            ldc "document"
            aload 2 /* document */
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Lio/vertx/core/json/JsonObject;)Lio/vertx/core/json/JsonObject;
            pop
         6: .line 96
            aload 0 /* this */
            getfield examples.SomeDatabaseServiceVertxEBProxy._options:Lio/vertx/core/eventbus/DeliveryOptions;
            ifnull 7
            new io.vertx.core.eventbus.DeliveryOptions
            dup
            aload 0 /* this */
            getfield examples.SomeDatabaseServiceVertxEBProxy._options:Lio/vertx/core/eventbus/DeliveryOptions;
            invokespecial io.vertx.core.eventbus.DeliveryOptions.<init>:(Lio/vertx/core/eventbus/DeliveryOptions;)V
            goto 8
      StackMap locals: io.vertx.core.json.JsonObject
      StackMap stack:
         7: new io.vertx.core.eventbus.DeliveryOptions
            dup
            invokespecial io.vertx.core.eventbus.DeliveryOptions.<init>:()V
      StackMap locals:
      StackMap stack: io.vertx.core.eventbus.DeliveryOptions
         8: astore 5 /* _deliveryOptions */
        start local 5 // io.vertx.core.eventbus.DeliveryOptions _deliveryOptions
         9: .line 97
            aload 5 /* _deliveryOptions */
            ldc "action"
            ldc "foo"
            invokevirtual io.vertx.core.eventbus.DeliveryOptions.addHeader:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/core/eventbus/DeliveryOptions;
            pop
        10: .line 98
            aload 0 /* this */
            getfield examples.SomeDatabaseServiceVertxEBProxy._vertx:Lio/vertx/core/Vertx;
            invokeinterface io.vertx.core.Vertx.eventBus:()Lio/vertx/core/eventbus/EventBus;
            aload 0 /* this */
            getfield examples.SomeDatabaseServiceVertxEBProxy._address:Ljava/lang/String;
            aload 4 /* _json */
            aload 5 /* _deliveryOptions */
            aload 3 /* result */
            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
                  examples/SomeDatabaseServiceVertxEBProxy.lambda$1(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.core.eventbus.EventBus.send:(Ljava/lang/String;Ljava/lang/Object;Lio/vertx/core/eventbus/DeliveryOptions;Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/EventBus;
            pop
        11: .line 105
            aload 0 /* this */
            areturn
        end local 5 // io.vertx.core.eventbus.DeliveryOptions _deliveryOptions
        end local 4 // io.vertx.core.json.JsonObject _json
        end local 3 // io.vertx.core.Handler result
        end local 2 // io.vertx.core.json.JsonObject document
        end local 1 // java.lang.String collection
        end local 0 // examples.SomeDatabaseServiceVertxEBProxy this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   12     0              this  Lexamples/SomeDatabaseServiceVertxEBProxy;
            0   12     1        collection  Ljava/lang/String;
            0   12     2          document  Lio/vertx/core/json/JsonObject;
            0   12     3            result  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
            4   12     4             _json  Lio/vertx/core/json/JsonObject;
            9   12     5  _deliveryOptions  Lio/vertx/core/eventbus/DeliveryOptions;
    Signature: (Ljava/lang/String;Lio/vertx/core/json/JsonObject;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)Lexamples/SomeDatabaseService;
    MethodParameters:
            Name  Flags
      collection  
      document    
      result      

  private static void lambda$0(io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // io.vertx.core.AsyncResult res
         0: .line 79
            aload 1 /* res */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 3
         1: .line 80
            aload 0
            aload 1 /* res */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 81
            goto 4
         3: .line 82
      StackMap locals:
      StackMap stack:
            aload 0
            aload 1 /* res */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.core.eventbus.Message
            invokeinterface io.vertx.core.eventbus.Message.body:()Ljava/lang/Object;
            checkcast java.lang.Void
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         4: .line 84
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.AsyncResult res
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     1   res  Lio/vertx/core/AsyncResult<Lio/vertx/core/eventbus/Message<Ljava/lang/Void;>;>;

  private static void lambda$1(io.vertx.core.Handler, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // io.vertx.core.AsyncResult res
         0: .line 99
            aload 1 /* res */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 3
         1: .line 100
            aload 0
            aload 1 /* res */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         2: .line 101
            goto 4
         3: .line 102
      StackMap locals:
      StackMap stack:
            aload 0
            aload 1 /* res */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.core.eventbus.Message
            invokeinterface io.vertx.core.eventbus.Message.body:()Ljava/lang/Object;
            checkcast java.lang.Void
            invokestatic io.vertx.core.Future.succeededFuture:(Ljava/lang/Object;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         4: .line 104
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.AsyncResult res
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     1   res  Lio/vertx/core/AsyncResult<Lio/vertx/core/eventbus/Message<Ljava/lang/Void;>;>;
}
SourceFile: "SomeDatabaseServiceVertxEBProxy.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles