public class examples.HealthCheckExamples
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: examples.HealthCheckExamples
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // examples.HealthCheckExamples this
         0: .line 16
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // examples.HealthCheckExamples this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lexamples/HealthCheckExamples;

  public void example1(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // examples.HealthCheckExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 19
            aload 1 /* vertx */
            invokestatic io.vertx.ext.healthchecks.HealthChecks.create:(Lio/vertx/core/Vertx;)Lio/vertx/ext/healthchecks/HealthChecks;
            astore 2 /* hc */
        start local 2 // io.vertx.ext.healthchecks.HealthChecks hc
         1: .line 21
            aload 2 /* hc */
         2: .line 22
            ldc "my-procedure"
         3: .line 23
            invokedynamic handle()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/HealthCheckExamples.lambda$0(Lio/vertx/core/Promise;)V (6)
                  (Lio/vertx/core/Promise;)V
         4: .line 21
            invokeinterface io.vertx.ext.healthchecks.HealthChecks.register:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/ext/healthchecks/HealthChecks;
            pop
         5: .line 27
            aload 2 /* hc */
         6: .line 28
            ldc "my-procedure"
         7: .line 29
            ldc 2000
         8: .line 30
            invokedynamic handle()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/HealthCheckExamples.lambda$1(Lio/vertx/core/Promise;)V (6)
                  (Lio/vertx/core/Promise;)V
         9: .line 27
            invokeinterface io.vertx.ext.healthchecks.HealthChecks.register:(Ljava/lang/String;JLio/vertx/core/Handler;)Lio/vertx/ext/healthchecks/HealthChecks;
            pop
        10: .line 32
            return
        end local 2 // io.vertx.ext.healthchecks.HealthChecks hc
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HealthCheckExamples this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Lexamples/HealthCheckExamples;
            0   11     1  vertx  Lio/vertx/core/Vertx;
            1   11     2     hc  Lio/vertx/ext/healthchecks/HealthChecks;
    MethodParameters:
       Name  Flags
      vertx  

  public void example2(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // examples.HealthCheckExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 35
            aload 1 /* vertx */
            invokestatic io.vertx.ext.healthchecks.HealthCheckHandler.create:(Lio/vertx/core/Vertx;)Lio/vertx/ext/healthchecks/HealthCheckHandler;
            astore 2 /* healthCheckHandler1 */
        start local 2 // io.vertx.ext.healthchecks.HealthCheckHandler healthCheckHandler1
         1: .line 38
            aload 1 /* vertx */
            invokestatic io.vertx.ext.healthchecks.HealthChecks.create:(Lio/vertx/core/Vertx;)Lio/vertx/ext/healthchecks/HealthChecks;
            invokestatic io.vertx.ext.healthchecks.HealthCheckHandler.createWithHealthChecks:(Lio/vertx/ext/healthchecks/HealthChecks;)Lio/vertx/ext/healthchecks/HealthCheckHandler;
         2: .line 37
            astore 3 /* healthCheckHandler2 */
        start local 3 // io.vertx.ext.healthchecks.HealthCheckHandler healthCheckHandler2
         3: .line 40
            aload 1 /* vertx */
            invokestatic io.vertx.ext.web.Router.router:(Lio/vertx/core/Vertx;)Lio/vertx/ext/web/Router;
            astore 4 /* router */
        start local 4 // io.vertx.ext.web.Router router
         4: .line 43
            aload 4 /* router */
            ldc "/health*"
            invokeinterface io.vertx.ext.web.Router.get:(Ljava/lang/String;)Lio/vertx/ext/web/Route;
            aload 2 /* healthCheckHandler1 */
            invokeinterface io.vertx.ext.web.Route.handler:(Lio/vertx/core/Handler;)Lio/vertx/ext/web/Route;
            pop
         5: .line 45
            aload 4 /* router */
            ldc "/ping*"
            invokeinterface io.vertx.ext.web.Router.get:(Ljava/lang/String;)Lio/vertx/ext/web/Route;
            aload 3 /* healthCheckHandler2 */
            invokeinterface io.vertx.ext.web.Route.handler:(Lio/vertx/core/Handler;)Lio/vertx/ext/web/Route;
            pop
         6: .line 46
            return
        end local 4 // io.vertx.ext.web.Router router
        end local 3 // io.vertx.ext.healthchecks.HealthCheckHandler healthCheckHandler2
        end local 2 // io.vertx.ext.healthchecks.HealthCheckHandler healthCheckHandler1
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HealthCheckExamples this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    7     0                 this  Lexamples/HealthCheckExamples;
            0    7     1                vertx  Lio/vertx/core/Vertx;
            1    7     2  healthCheckHandler1  Lio/vertx/ext/healthchecks/HealthCheckHandler;
            3    7     3  healthCheckHandler2  Lio/vertx/ext/healthchecks/HealthCheckHandler;
            4    7     4               router  Lio/vertx/ext/web/Router;
    MethodParameters:
       Name  Flags
      vertx  

  public void example2(io.vertx.core.Vertx, io.vertx.ext.web.Router);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/ext/web/Router;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // examples.HealthCheckExamples this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // io.vertx.ext.web.Router router
         0: .line 50
            aload 1 /* vertx */
            invokestatic io.vertx.ext.healthchecks.HealthCheckHandler.create:(Lio/vertx/core/Vertx;)Lio/vertx/ext/healthchecks/HealthCheckHandler;
            astore 3 /* healthCheckHandler */
        start local 3 // io.vertx.ext.healthchecks.HealthCheckHandler healthCheckHandler
         1: .line 54
            aload 3 /* healthCheckHandler */
            ldc "my-procedure-name"
            invokedynamic handle()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/HealthCheckExamples.lambda$2(Lio/vertx/core/Promise;)V (6)
                  (Lio/vertx/core/Promise;)V
            invokeinterface io.vertx.ext.healthchecks.HealthCheckHandler.register:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/ext/healthchecks/HealthCheckHandler;
            pop
         2: .line 64
            aload 3 /* healthCheckHandler */
         3: .line 65
            ldc "my-procedure-name-with-timeout"
         4: .line 66
            ldc 2000
         5: .line 67
            invokedynamic handle()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/HealthCheckExamples.lambda$3(Lio/vertx/core/Promise;)V (6)
                  (Lio/vertx/core/Promise;)V
         6: .line 64
            invokeinterface io.vertx.ext.healthchecks.HealthCheckHandler.register:(Ljava/lang/String;JLio/vertx/core/Handler;)Lio/vertx/ext/healthchecks/HealthCheckHandler;
            pop
         7: .line 75
            aload 2 /* router */
            ldc "/health"
            invokeinterface io.vertx.ext.web.Router.get:(Ljava/lang/String;)Lio/vertx/ext/web/Route;
            aload 3 /* healthCheckHandler */
            invokeinterface io.vertx.ext.web.Route.handler:(Lio/vertx/core/Handler;)Lio/vertx/ext/web/Route;
            pop
         8: .line 76
            return
        end local 3 // io.vertx.ext.healthchecks.HealthCheckHandler healthCheckHandler
        end local 2 // io.vertx.ext.web.Router router
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HealthCheckExamples this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    9     0                this  Lexamples/HealthCheckExamples;
            0    9     1               vertx  Lio/vertx/core/Vertx;
            0    9     2              router  Lio/vertx/ext/web/Router;
            1    9     3  healthCheckHandler  Lio/vertx/ext/healthchecks/HealthCheckHandler;
    MethodParameters:
        Name  Flags
      vertx   
      router  

  public void example3(io.vertx.core.Vertx, io.vertx.ext.web.Router);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/ext/web/Router;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // examples.HealthCheckExamples this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // io.vertx.ext.web.Router router
         0: .line 80
            aload 1 /* vertx */
            invokestatic io.vertx.ext.healthchecks.HealthCheckHandler.create:(Lio/vertx/core/Vertx;)Lio/vertx/ext/healthchecks/HealthCheckHandler;
            astore 3 /* healthCheckHandler */
        start local 3 // io.vertx.ext.healthchecks.HealthCheckHandler healthCheckHandler
         1: .line 85
            aload 3 /* healthCheckHandler */
         2: .line 86
            ldc "a-group/my-procedure-name"
         3: .line 87
            invokedynamic handle()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/HealthCheckExamples.lambda$4(Lio/vertx/core/Promise;)V (6)
                  (Lio/vertx/core/Promise;)V
         4: .line 85
            invokeinterface io.vertx.ext.healthchecks.HealthCheckHandler.register:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/ext/healthchecks/HealthCheckHandler;
            pop
         5: .line 90
            aload 3 /* healthCheckHandler */
         6: .line 91
            ldc "a-group/a-second-group/my-second-procedure-name"
         7: .line 92
            invokedynamic handle()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/HealthCheckExamples.lambda$5(Lio/vertx/core/Promise;)V (6)
                  (Lio/vertx/core/Promise;)V
         8: .line 90
            invokeinterface io.vertx.ext.healthchecks.HealthCheckHandler.register:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/ext/healthchecks/HealthCheckHandler;
            pop
         9: .line 96
            aload 2 /* router */
            ldc "/health"
            invokeinterface io.vertx.ext.web.Router.get:(Ljava/lang/String;)Lio/vertx/ext/web/Route;
            aload 3 /* healthCheckHandler */
            invokeinterface io.vertx.ext.web.Route.handler:(Lio/vertx/core/Handler;)Lio/vertx/ext/web/Route;
            pop
        10: .line 97
            return
        end local 3 // io.vertx.ext.healthchecks.HealthCheckHandler healthCheckHandler
        end local 2 // io.vertx.ext.web.Router router
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HealthCheckExamples this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   11     0                this  Lexamples/HealthCheckExamples;
            0   11     1               vertx  Lio/vertx/core/Vertx;
            0   11     2              router  Lio/vertx/ext/web/Router;
            1   11     3  healthCheckHandler  Lio/vertx/ext/healthchecks/HealthCheckHandler;
    MethodParameters:
        Name  Flags
      vertx   
      router  

  public void example4(io.vertx.core.Vertx, io.vertx.ext.web.Router);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/ext/web/Router;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // examples.HealthCheckExamples this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // io.vertx.ext.web.Router router
         0: .line 100
            aload 1 /* vertx */
            invokestatic io.vertx.ext.healthchecks.HealthCheckHandler.create:(Lio/vertx/core/Vertx;)Lio/vertx/ext/healthchecks/HealthCheckHandler;
            astore 3 /* healthCheckHandler */
        start local 3 // io.vertx.ext.healthchecks.HealthCheckHandler healthCheckHandler
         1: .line 103
            aload 3 /* healthCheckHandler */
            ldc "my-procedure-name"
            invokedynamic handle()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/HealthCheckExamples.lambda$6(Lio/vertx/core/Promise;)V (6)
                  (Lio/vertx/core/Promise;)V
            invokeinterface io.vertx.ext.healthchecks.HealthCheckHandler.register:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/ext/healthchecks/HealthCheckHandler;
            pop
         2: .line 107
            aload 3 /* healthCheckHandler */
            ldc "my-second-procedure-name"
            invokedynamic handle()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/HealthCheckExamples.lambda$7(Lio/vertx/core/Promise;)V (6)
                  (Lio/vertx/core/Promise;)V
            invokeinterface io.vertx.ext.healthchecks.HealthCheckHandler.register:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/ext/healthchecks/HealthCheckHandler;
            pop
         3: .line 111
            aload 2 /* router */
            ldc "/health"
            invokeinterface io.vertx.ext.web.Router.get:(Ljava/lang/String;)Lio/vertx/ext/web/Route;
            aload 3 /* healthCheckHandler */
            invokeinterface io.vertx.ext.web.Route.handler:(Lio/vertx/core/Handler;)Lio/vertx/ext/web/Route;
            pop
         4: .line 112
            return
        end local 3 // io.vertx.ext.healthchecks.HealthCheckHandler healthCheckHandler
        end local 2 // io.vertx.ext.web.Router router
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HealthCheckExamples this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    5     0                this  Lexamples/HealthCheckExamples;
            0    5     1               vertx  Lio/vertx/core/Vertx;
            0    5     2              router  Lio/vertx/ext/web/Router;
            1    5     3  healthCheckHandler  Lio/vertx/ext/healthchecks/HealthCheckHandler;
    MethodParameters:
        Name  Flags
      vertx   
      router  

  public void dbPool(io.vertx.sqlclient.Pool, io.vertx.ext.healthchecks.HealthCheckHandler);
    descriptor: (Lio/vertx/sqlclient/Pool;Lio/vertx/ext/healthchecks/HealthCheckHandler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // examples.HealthCheckExamples this
        start local 1 // io.vertx.sqlclient.Pool pool
        start local 2 // io.vertx.ext.healthchecks.HealthCheckHandler handler
         0: .line 115
            aload 2 /* handler */
            ldc "database"
         1: .line 116
            aload 1 /* pool */
            invokedynamic handle(Lio/vertx/sqlclient/Pool;)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/HealthCheckExamples.lambda$8(Lio/vertx/sqlclient/Pool;Lio/vertx/core/Promise;)V (6)
                  (Lio/vertx/core/Promise;)V
         2: .line 115
            invokeinterface io.vertx.ext.healthchecks.HealthCheckHandler.register:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/ext/healthchecks/HealthCheckHandler;
            pop
         3: .line 124
            return
        end local 2 // io.vertx.ext.healthchecks.HealthCheckHandler handler
        end local 1 // io.vertx.sqlclient.Pool pool
        end local 0 // examples.HealthCheckExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lexamples/HealthCheckExamples;
            0    4     1     pool  Lio/vertx/sqlclient/Pool;
            0    4     2  handler  Lio/vertx/ext/healthchecks/HealthCheckHandler;
    MethodParameters:
         Name  Flags
      pool     
      handler  

  public void service(io.vertx.servicediscovery.ServiceDiscovery, io.vertx.ext.healthchecks.HealthCheckHandler);
    descriptor: (Lio/vertx/servicediscovery/ServiceDiscovery;Lio/vertx/ext/healthchecks/HealthCheckHandler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // examples.HealthCheckExamples this
        start local 1 // io.vertx.servicediscovery.ServiceDiscovery discovery
        start local 2 // io.vertx.ext.healthchecks.HealthCheckHandler handler
         0: .line 127
            aload 2 /* handler */
            ldc "my-service"
         1: .line 128
            aload 1 /* discovery */
            invokedynamic handle(Lio/vertx/servicediscovery/ServiceDiscovery;)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/HealthCheckExamples.lambda$10(Lio/vertx/servicediscovery/ServiceDiscovery;Lio/vertx/core/Promise;)V (6)
                  (Lio/vertx/core/Promise;)V
         2: .line 127
            invokeinterface io.vertx.ext.healthchecks.HealthCheckHandler.register:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/ext/healthchecks/HealthCheckHandler;
            pop
         3: .line 138
            return
        end local 2 // io.vertx.ext.healthchecks.HealthCheckHandler handler
        end local 1 // io.vertx.servicediscovery.ServiceDiscovery discovery
        end local 0 // examples.HealthCheckExamples this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lexamples/HealthCheckExamples;
            0    4     1  discovery  Lio/vertx/servicediscovery/ServiceDiscovery;
            0    4     2    handler  Lio/vertx/ext/healthchecks/HealthCheckHandler;
    MethodParameters:
           Name  Flags
      discovery  
      handler    

  public void eventbus(io.vertx.core.Vertx, io.vertx.ext.healthchecks.HealthCheckHandler);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/ext/healthchecks/HealthCheckHandler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // examples.HealthCheckExamples this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // io.vertx.ext.healthchecks.HealthCheckHandler handler
         0: .line 141
            aload 2 /* handler */
            ldc "receiver"
         1: .line 142
            aload 1 /* vertx */
            invokedynamic handle(Lio/vertx/core/Vertx;)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/HealthCheckExamples.lambda$13(Lio/vertx/core/Vertx;Lio/vertx/core/Promise;)V (6)
                  (Lio/vertx/core/Promise;)V
         2: .line 141
            invokeinterface io.vertx.ext.healthchecks.HealthCheckHandler.register:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/ext/healthchecks/HealthCheckHandler;
            pop
         3: .line 150
            return
        end local 2 // io.vertx.ext.healthchecks.HealthCheckHandler handler
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HealthCheckExamples this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lexamples/HealthCheckExamples;
            0    4     1    vertx  Lio/vertx/core/Vertx;
            0    4     2  handler  Lio/vertx/ext/healthchecks/HealthCheckHandler;
    MethodParameters:
         Name  Flags
      vertx    
      handler  

  public void publishOnEventBus(io.vertx.core.Vertx, io.vertx.ext.healthchecks.HealthChecks);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/ext/healthchecks/HealthChecks;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // examples.HealthCheckExamples this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // io.vertx.ext.healthchecks.HealthChecks healthChecks
         0: .line 153
            aload 1 /* vertx */
            invokeinterface io.vertx.core.Vertx.eventBus:()Lio/vertx/core/eventbus/EventBus;
            ldc "health"
         1: .line 154
            aload 2 /* healthChecks */
            invokedynamic handle(Lio/vertx/ext/healthchecks/HealthChecks;)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/HealthCheckExamples.lambda$16(Lio/vertx/ext/healthchecks/HealthChecks;Lio/vertx/core/eventbus/Message;)V (6)
                  (Lio/vertx/core/eventbus/Message;)V
         2: .line 153
            invokeinterface io.vertx.core.eventbus.EventBus.consumer:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/eventbus/MessageConsumer;
            pop
         3: .line 157
            return
        end local 2 // io.vertx.ext.healthchecks.HealthChecks healthChecks
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.HealthCheckExamples this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    4     0          this  Lexamples/HealthCheckExamples;
            0    4     1         vertx  Lio/vertx/core/Vertx;
            0    4     2  healthChecks  Lio/vertx/ext/healthchecks/HealthChecks;
    MethodParameters:
              Name  Flags
      vertx         
      healthChecks  

  private static void lambda$0(io.vertx.core.Promise);
    descriptor: (Lio/vertx/core/Promise;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.Promise promise
         0: .line 23
            aload 0 /* promise */
            invokestatic io.vertx.ext.healthchecks.Status.OK:()Lio/vertx/ext/healthchecks/Status;
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
            return
        end local 0 // io.vertx.core.Promise promise
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  promise  Lio/vertx/core/Promise<Lio/vertx/ext/healthchecks/Status;>;

  private static void lambda$1(io.vertx.core.Promise);
    descriptor: (Lio/vertx/core/Promise;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.Promise promise
         0: .line 30
            aload 0 /* promise */
            invokestatic io.vertx.ext.healthchecks.Status.OK:()Lio/vertx/ext/healthchecks/Status;
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
            return
        end local 0 // io.vertx.core.Promise promise
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  promise  Lio/vertx/core/Promise<Lio/vertx/ext/healthchecks/Status;>;

  private static void lambda$2(io.vertx.core.Promise);
    descriptor: (Lio/vertx/core/Promise;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.Promise promise
         0: .line 57
            aload 0 /* promise */
            invokestatic io.vertx.ext.healthchecks.Status.OK:()Lio/vertx/ext/healthchecks/Status;
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
         1: .line 59
            aload 0 /* promise */
            invokestatic io.vertx.ext.healthchecks.Status.KO:()Lio/vertx/ext/healthchecks/Status;
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
         2: .line 60
            return
        end local 0 // io.vertx.core.Promise promise
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0  promise  Lio/vertx/core/Promise<Lio/vertx/ext/healthchecks/Status;>;

  private static void lambda$3(io.vertx.core.Promise);
    descriptor: (Lio/vertx/core/Promise;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.Promise promise
         0: .line 70
            aload 0 /* promise */
            invokestatic io.vertx.ext.healthchecks.Status.OK:()Lio/vertx/ext/healthchecks/Status;
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
         1: .line 72
            aload 0 /* promise */
            invokestatic io.vertx.ext.healthchecks.Status.KO:()Lio/vertx/ext/healthchecks/Status;
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
         2: .line 73
            return
        end local 0 // io.vertx.core.Promise promise
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0  promise  Lio/vertx/core/Promise<Lio/vertx/ext/healthchecks/Status;>;

  private static void lambda$4(io.vertx.core.Promise);
    descriptor: (Lio/vertx/core/Promise;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.vertx.core.Promise promise
         0: .line 89
            return
        end local 0 // io.vertx.core.Promise promise
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  promise  Lio/vertx/core/Promise<Lio/vertx/ext/healthchecks/Status;>;

  private static void lambda$5(io.vertx.core.Promise);
    descriptor: (Lio/vertx/core/Promise;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.vertx.core.Promise promise
         0: .line 94
            return
        end local 0 // io.vertx.core.Promise promise
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  promise  Lio/vertx/core/Promise<Lio/vertx/ext/healthchecks/Status;>;

  private static void lambda$6(io.vertx.core.Promise);
    descriptor: (Lio/vertx/core/Promise;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.Promise promise
         0: .line 104
            aload 0 /* promise */
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            ldc "available-memory"
            ldc "2mb"
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            invokestatic io.vertx.ext.healthchecks.Status.OK:(Lio/vertx/core/json/JsonObject;)Lio/vertx/ext/healthchecks/Status;
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
         1: .line 105
            return
        end local 0 // io.vertx.core.Promise promise
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0  promise  Lio/vertx/core/Promise<Lio/vertx/ext/healthchecks/Status;>;

  private static void lambda$7(io.vertx.core.Promise);
    descriptor: (Lio/vertx/core/Promise;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.core.Promise promise
         0: .line 108
            aload 0 /* promise */
            new io.vertx.core.json.JsonObject
            dup
            invokespecial io.vertx.core.json.JsonObject.<init>:()V
            ldc "load"
            bipush 99
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual io.vertx.core.json.JsonObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/json/JsonObject;
            invokestatic io.vertx.ext.healthchecks.Status.KO:(Lio/vertx/core/json/JsonObject;)Lio/vertx/ext/healthchecks/Status;
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
         1: .line 109
            return
        end local 0 // io.vertx.core.Promise promise
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0  promise  Lio/vertx/core/Promise<Lio/vertx/ext/healthchecks/Status;>;

  private static void lambda$8(io.vertx.sqlclient.Pool, io.vertx.core.Promise);
    descriptor: (Lio/vertx/sqlclient/Pool;Lio/vertx/core/Promise;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // io.vertx.core.Promise promise
         0: .line 116
            aload 0
            aload 1 /* promise */
            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
                  examples/HealthCheckExamples.lambda$9(Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
            invokeinterface io.vertx.sqlclient.Pool.getConnection:(Lio/vertx/core/Handler;)V
         1: .line 123
            return
        end local 1 // io.vertx.core.Promise promise
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     1  promise  Lio/vertx/core/Promise<Lio/vertx/ext/healthchecks/Status;>;

  private static void lambda$10(io.vertx.servicediscovery.ServiceDiscovery, io.vertx.core.Promise);
    descriptor: (Lio/vertx/servicediscovery/ServiceDiscovery;Lio/vertx/core/Promise;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=2, args_size=2
        start local 1 // io.vertx.core.Promise promise
         0: .line 129
            aload 0
            invokedynamic apply()Ljava/util/function/Function;
              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;)Ljava/lang/Object;
                  examples/HealthCheckExamples.lambda$11(Lio/vertx/servicediscovery/Record;)Ljava/lang/Boolean; (6)
                  (Lio/vertx/servicediscovery/Record;)Ljava/lang/Boolean;
         1: .line 130
            aload 1 /* promise */
            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
                  examples/HealthCheckExamples.lambda$12(Lio/vertx/core/Promise;Lio/vertx/core/AsyncResult;)V (6)
                  (Lio/vertx/core/AsyncResult;)V
         2: .line 129
            invokestatic io.vertx.servicediscovery.types.HttpEndpoint.getClient:(Lio/vertx/servicediscovery/ServiceDiscovery;Ljava/util/function/Function;Lio/vertx/core/Handler;)V
         3: .line 137
            return
        end local 1 // io.vertx.core.Promise promise
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     1  promise  Lio/vertx/core/Promise<Lio/vertx/ext/healthchecks/Status;>;

  private static void lambda$13(io.vertx.core.Vertx, io.vertx.core.Promise);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/core/Promise;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=2, args_size=2
        start local 1 // io.vertx.core.Promise promise
         0: .line 143
            aload 0
            invokeinterface io.vertx.core.Vertx.eventBus:()Lio/vertx/core/eventbus/EventBus;
            ldc "health"
            ldc "ping"
            invokeinterface io.vertx.core.eventbus.EventBus.request:(Ljava/lang/String;Ljava/lang/Object;)Lio/vertx/core/Future;
         1: .line 144
            aload 1 /* promise */
            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
                  examples/HealthCheckExamples.lambda$14(Lio/vertx/core/Promise;Lio/vertx/core/eventbus/Message;)V (6)
                  (Lio/vertx/core/eventbus/Message;)V
            invokeinterface io.vertx.core.Future.onSuccess:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
         2: .line 147
            aload 1 /* promise */
            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
                  examples/HealthCheckExamples.lambda$15(Lio/vertx/core/Promise;Ljava/lang/Throwable;)V (6)
                  (Ljava/lang/Throwable;)V
            invokeinterface io.vertx.core.Future.onFailure:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
         3: .line 149
            return
        end local 1 // io.vertx.core.Promise promise
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     1  promise  Lio/vertx/core/Promise<Lio/vertx/ext/healthchecks/Status;>;

  private static void lambda$16(io.vertx.ext.healthchecks.HealthChecks, io.vertx.core.eventbus.Message);
    descriptor: (Lio/vertx/ext/healthchecks/HealthChecks;Lio/vertx/core/eventbus/Message;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=2, args_size=2
        start local 1 // io.vertx.core.eventbus.Message message
         0: .line 154
            aload 0
            invokeinterface io.vertx.ext.healthchecks.HealthChecks.checkStatus:()Lio/vertx/core/Future;
         1: .line 155
            aload 1 /* message */
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic handle(Lio/vertx/core/eventbus/Message;)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/core/eventbus/Message.reply(Ljava/lang/Object;)V (9 itf)
                  (Lio/vertx/ext/healthchecks/CheckResult;)V
            invokeinterface io.vertx.core.Future.onSuccess:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
         2: .line 156
            aload 1 /* message */
            invokedynamic handle(Lio/vertx/core/eventbus/Message;)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/HealthCheckExamples.lambda$18(Lio/vertx/core/eventbus/Message;Ljava/lang/Throwable;)V (6)
                  (Ljava/lang/Throwable;)V
            invokeinterface io.vertx.core.Future.onFailure:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            return
        end local 1 // io.vertx.core.eventbus.Message message
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     1  message  Lio/vertx/core/eventbus/Message<Ljava/lang/Object;>;

  private static void lambda$9(io.vertx.core.Promise, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Promise;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 connection
         0: .line 117
            aload 1 /* connection */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 3
         1: .line 118
            aload 0
            aload 1 /* connection */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokeinterface io.vertx.core.Promise.fail:(Ljava/lang/Throwable;)V
         2: .line 119
            goto 5
         3: .line 120
      StackMap locals:
      StackMap stack:
            aload 1 /* connection */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.sqlclient.SqlConnection
            invokeinterface io.vertx.sqlclient.SqlConnection.close:()Lio/vertx/core/Future;
            pop
         4: .line 121
            aload 0
            invokestatic io.vertx.ext.healthchecks.Status.OK:()Lio/vertx/ext/healthchecks/Status;
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
         5: .line 123
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.AsyncResult connection
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     1  connection  Lio/vertx/core/AsyncResult<Lio/vertx/sqlclient/SqlConnection;>;

  private static java.lang.Boolean lambda$11(io.vertx.servicediscovery.Record);
    descriptor: (Lio/vertx/servicediscovery/Record;)Ljava/lang/Boolean;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.servicediscovery.Record rec
         0: .line 129
            ldc "my-service"
            aload 0 /* rec */
            invokevirtual io.vertx.servicediscovery.Record.getName:()Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            areturn
        end local 0 // io.vertx.servicediscovery.Record rec
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   rec  Lio/vertx/servicediscovery/Record;

  private static void lambda$12(io.vertx.core.Promise, io.vertx.core.AsyncResult);
    descriptor: (Lio/vertx/core/Promise;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 client
         0: .line 131
            aload 1 /* client */
            invokeinterface io.vertx.core.AsyncResult.failed:()Z
            ifeq 3
         1: .line 132
            aload 0
            aload 1 /* client */
            invokeinterface io.vertx.core.AsyncResult.cause:()Ljava/lang/Throwable;
            invokeinterface io.vertx.core.Promise.fail:(Ljava/lang/Throwable;)V
         2: .line 133
            goto 5
         3: .line 134
      StackMap locals:
      StackMap stack:
            aload 1 /* client */
            invokeinterface io.vertx.core.AsyncResult.result:()Ljava/lang/Object;
            checkcast io.vertx.core.http.HttpClient
            invokeinterface io.vertx.core.http.HttpClient.close:()Lio/vertx/core/Future;
            pop
         4: .line 135
            aload 0
            invokestatic io.vertx.ext.healthchecks.Status.OK:()Lio/vertx/ext/healthchecks/Status;
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
         5: .line 137
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.vertx.core.AsyncResult client
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     1  client  Lio/vertx/core/AsyncResult<Lio/vertx/core/http/HttpClient;>;

  private static void lambda$14(io.vertx.core.Promise, io.vertx.core.eventbus.Message);
    descriptor: (Lio/vertx/core/Promise;Lio/vertx/core/eventbus/Message;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // io.vertx.core.eventbus.Message msg
         0: .line 145
            aload 0
            invokestatic io.vertx.ext.healthchecks.Status.OK:()Lio/vertx/ext/healthchecks/Status;
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
         1: .line 146
            return
        end local 1 // io.vertx.core.eventbus.Message msg
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     1   msg  Lio/vertx/core/eventbus/Message<Ljava/lang/Object;>;

  private static void lambda$15(io.vertx.core.Promise, java.lang.Throwable);
    descriptor: (Lio/vertx/core/Promise;Ljava/lang/Throwable;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // java.lang.Throwable err
         0: .line 148
            aload 0
            invokestatic io.vertx.ext.healthchecks.Status.KO:()Lio/vertx/ext/healthchecks/Status;
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
         1: .line 149
            return
        end local 1 // java.lang.Throwable err
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     1   err  Ljava/lang/Throwable;

  private static void lambda$18(io.vertx.core.eventbus.Message, java.lang.Throwable);
    descriptor: (Lio/vertx/core/eventbus/Message;Ljava/lang/Throwable;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=2, args_size=2
        start local 1 // java.lang.Throwable err
         0: .line 156
            aload 0
            iconst_0
            aload 1 /* err */
            invokevirtual java.lang.Throwable.getMessage:()Ljava/lang/String;
            invokeinterface io.vertx.core.eventbus.Message.fail:(ILjava/lang/String;)V
            return
        end local 1 // java.lang.Throwable err
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     1   err  Ljava/lang/Throwable;
}
SourceFile: "HealthCheckExamples.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles