class io.vertx.ext.mail.impl.MultilineParser implements io.vertx.core.Handler<io.vertx.core.buffer.Buffer>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.vertx.ext.mail.impl.MultilineParser
  super_class: java.lang.Object
{
  private static final java.util.regex.Pattern STATUS_LINE_CONTINUE;
    descriptor: Ljava/util/regex/Pattern;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final io.vertx.core.logging.Logger log;
    descriptor: Lio/vertx/core/logging/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

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

  private io.vertx.core.buffer.Buffer result;
    descriptor: Lio/vertx/core/buffer/Buffer;
    flags: (0x0002) ACC_PRIVATE

  private io.vertx.core.parsetools.RecordParser rp;
    descriptor: Lio/vertx/core/parsetools/RecordParser;
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 31
            ldc "^\\d{3}-.*"
            invokestatic java.util.regex.Pattern.compile:(Ljava/lang/String;)Ljava/util/regex/Pattern;
            putstatic io.vertx.ext.mail.impl.MultilineParser.STATUS_LINE_CONTINUE:Ljava/util/regex/Pattern;
         1: .line 32
            ldc Lio/vertx/ext/mail/impl/MultilineParser;
            invokestatic io.vertx.core.logging.LoggerFactory.getLogger:(Ljava/lang/Class;)Lio/vertx/core/logging/Logger;
            putstatic io.vertx.ext.mail.impl.MultilineParser.log:Lio/vertx/core/logging/Logger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(io.vertx.core.Handler<io.vertx.core.buffer.Buffer>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.vertx.ext.mail.impl.MultilineParser this
        start local 1 // io.vertx.core.Handler output
         0: .line 37
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 33
            aload 0 /* this */
            iconst_0
            putfield io.vertx.ext.mail.impl.MultilineParser.initialized:Z
         2: .line 38
            new io.vertx.ext.mail.impl.MultilineParser$1
            dup
            aload 0 /* this */
            aload 1 /* output */
            invokespecial io.vertx.ext.mail.impl.MultilineParser$1.<init>:(Lio/vertx/ext/mail/impl/MultilineParser;Lio/vertx/core/Handler;)V
            astore 2 /* mlp */
        start local 2 // io.vertx.core.Handler mlp
         3: .line 78
            aload 0 /* this */
            ldc "\n"
            aload 2 /* mlp */
            invokestatic io.vertx.core.parsetools.RecordParser.newDelimited:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/parsetools/RecordParser;
            putfield io.vertx.ext.mail.impl.MultilineParser.rp:Lio/vertx/core/parsetools/RecordParser;
         4: .line 79
            return
        end local 2 // io.vertx.core.Handler mlp
        end local 1 // io.vertx.core.Handler output
        end local 0 // io.vertx.ext.mail.impl.MultilineParser this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lio/vertx/ext/mail/impl/MultilineParser;
            0    5     1  output  Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;
            3    5     2     mlp  Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;)V
    MethodParameters:
        Name  Flags
      output  

  public void handle(io.vertx.core.buffer.Buffer);
    descriptor: (Lio/vertx/core/buffer/Buffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.vertx.ext.mail.impl.MultilineParser this
        start local 1 // io.vertx.core.buffer.Buffer event
         0: .line 83
            aload 0 /* this */
            getfield io.vertx.ext.mail.impl.MultilineParser.rp:Lio/vertx/core/parsetools/RecordParser;
            aload 1 /* event */
            invokeinterface io.vertx.core.parsetools.RecordParser.handle:(Lio/vertx/core/buffer/Buffer;)V
         1: .line 84
            return
        end local 1 // io.vertx.core.buffer.Buffer event
        end local 0 // io.vertx.ext.mail.impl.MultilineParser this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/ext/mail/impl/MultilineParser;
            0    2     1  event  Lio/vertx/core/buffer/Buffer;
    MethodParameters:
       Name  Flags
      event  final

  public void handle(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast io.vertx.core.buffer.Buffer
            invokevirtual io.vertx.ext.mail.impl.MultilineParser.handle:(Lio/vertx/core/buffer/Buffer;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/lang/Object;Lio/vertx/core/Handler<Lio/vertx/core/buffer/Buffer;>;
SourceFile: "MultilineParser.java"
NestMembers:
  io.vertx.ext.mail.impl.MultilineParser$1
InnerClasses:
  io.vertx.ext.mail.impl.MultilineParser$1