public interface io.vertx.proton.ProtonServer
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: io.vertx.proton.ProtonServer
  super_class: java.lang.Object
{
  public static io.vertx.proton.ProtonServer create(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)Lio/vertx/proton/ProtonServer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.Vertx vertx
         0: .line 37
            new io.vertx.proton.impl.ProtonServerImpl
            dup
            aload 0 /* vertx */
            invokespecial io.vertx.proton.impl.ProtonServerImpl.<init>:(Lio/vertx/core/Vertx;)V
            areturn
        end local 0 // io.vertx.core.Vertx vertx
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  vertx  Lio/vertx/core/Vertx;
    MethodParameters:
       Name  Flags
      vertx  

  public static io.vertx.proton.ProtonServer create(io.vertx.core.Vertx, io.vertx.proton.ProtonServerOptions);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/proton/ProtonServerOptions;)Lio/vertx/proton/ProtonServer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.vertx.core.Vertx vertx
        start local 1 // io.vertx.proton.ProtonServerOptions options
         0: .line 50
            new io.vertx.proton.impl.ProtonServerImpl
            dup
            aload 0 /* vertx */
            aload 1 /* options */
            invokespecial io.vertx.proton.impl.ProtonServerImpl.<init>:(Lio/vertx/core/Vertx;Lio/vertx/proton/ProtonServerOptions;)V
            areturn
        end local 1 // io.vertx.proton.ProtonServerOptions options
        end local 0 // io.vertx.core.Vertx vertx
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0    vertx  Lio/vertx/core/Vertx;
            0    1     1  options  Lio/vertx/proton/ProtonServerOptions;
    MethodParameters:
         Name  Flags
      vertx    
      options  

  public abstract io.vertx.proton.ProtonServer connectHandler(io.vertx.core.Handler<io.vertx.proton.ProtonConnection>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/proton/ProtonServer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Lio/vertx/proton/ProtonConnection;>;)Lio/vertx/proton/ProtonServer;
    MethodParameters:
         Name  Flags
      handler  

  public abstract io.vertx.core.Handler<io.vertx.proton.ProtonConnection> connectHandler();
    descriptor: ()Lio/vertx/core/Handler;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: ()Lio/vertx/core/Handler<Lio/vertx/proton/ProtonConnection;>;

  public abstract io.vertx.proton.ProtonServer saslAuthenticatorFactory(io.vertx.proton.sasl.ProtonSaslAuthenticatorFactory);
    descriptor: (Lio/vertx/proton/sasl/ProtonSaslAuthenticatorFactory;)Lio/vertx/proton/ProtonServer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
                      Name  Flags
      authenticatorFactory  

  public abstract int actualPort();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract io.vertx.proton.ProtonServer listen(int, java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.proton.ProtonServer>>);
    descriptor: (ILjava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/proton/ProtonServer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (ILjava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/proton/ProtonServer;>;>;)Lio/vertx/proton/ProtonServer;
    MethodParameters:
         Name  Flags
      port     
      host     
      handler  

  public abstract io.vertx.proton.ProtonServer listen(int, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.proton.ProtonServer>>);
    descriptor: (ILio/vertx/core/Handler;)Lio/vertx/proton/ProtonServer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (ILio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/proton/ProtonServer;>;>;)Lio/vertx/proton/ProtonServer;
    MethodParameters:
         Name  Flags
      port     
      handler  

  public abstract io.vertx.proton.ProtonServer listen(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.proton.ProtonServer>>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/proton/ProtonServer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/proton/ProtonServer;>;>;)Lio/vertx/proton/ProtonServer;
    MethodParameters:
         Name  Flags
      handler  

  public abstract io.vertx.proton.ProtonServer listen(int);
    descriptor: (I)Lio/vertx/proton/ProtonServer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      port  

  public abstract io.vertx.proton.ProtonServer listen(int, java.lang.String);
    descriptor: (ILjava/lang/String;)Lio/vertx/proton/ProtonServer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      port  
      host  

  public abstract io.vertx.proton.ProtonServer listen();
    descriptor: ()Lio/vertx/proton/ProtonServer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract void close();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract void close(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
         Name  Flags
      handler  
}
SourceFile: "ProtonServer.java"