public interface io.vertx.ext.shell.system.Process
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: io.vertx.ext.shell.system.Process
  super_class: java.lang.Object
{
  public abstract io.vertx.ext.shell.system.ExecStatus status();
    descriptor: ()Lio/vertx/ext/shell/system/ExecStatus;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.lang.Integer exitCode();
    descriptor: ()Ljava/lang/Integer;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract io.vertx.ext.shell.system.Process setTty(io.vertx.ext.shell.term.Tty);
    descriptor: (Lio/vertx/ext/shell/term/Tty;)Lio/vertx/ext/shell/system/Process;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
      Name  Flags
      tty   

  public abstract io.vertx.ext.shell.term.Tty getTty();
    descriptor: ()Lio/vertx/ext/shell/term/Tty;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.CacheReturn()

  public abstract io.vertx.ext.shell.system.Process setSession(io.vertx.ext.shell.session.Session);
    descriptor: (Lio/vertx/ext/shell/session/Session;)Lio/vertx/ext/shell/system/Process;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
         Name  Flags
      session  

  public abstract io.vertx.ext.shell.session.Session getSession();
    descriptor: ()Lio/vertx/ext/shell/session/Session;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.CacheReturn()

  public abstract io.vertx.ext.shell.system.Process terminatedHandler(io.vertx.core.Handler<java.lang.Integer>);
    descriptor: (Lio/vertx/core/Handler;)Lio/vertx/ext/shell/system/Process;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Integer;>;)Lio/vertx/ext/shell/system/Process;
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.Fluent()
    MethodParameters:
         Name  Flags
      handler  

  public void run();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.shell.system.Process this
         0: .line 104
            aload 0 /* this */
            iconst_1
            invokeinterface io.vertx.ext.shell.system.Process.run:(Z)V
         1: .line 105
            return
        end local 0 // io.vertx.ext.shell.system.Process this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/shell/system/Process;

  public abstract void run(boolean);
    descriptor: (Z)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
             Name  Flags
      foregraound  

  public boolean interrupt();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.shell.system.Process this
         0: .line 119
            aload 0 /* this */
            aconst_null
            invokeinterface io.vertx.ext.shell.system.Process.interrupt:(Lio/vertx/core/Handler;)Z
            ireturn
        end local 0 // io.vertx.ext.shell.system.Process this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/shell/system/Process;

  public abstract boolean interrupt(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)Z
    MethodParameters:
                   Name  Flags
      completionHandler  

  public void resume();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.shell.system.Process this
         0: .line 134
            aload 0 /* this */
            aconst_null
            invokeinterface io.vertx.ext.shell.system.Process.resume:(Lio/vertx/core/Handler;)V
         1: .line 135
            return
        end local 0 // io.vertx.ext.shell.system.Process this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/shell/system/Process;

  public void resume(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.system.Process this
        start local 1 // boolean foreground
         0: .line 141
            aload 0 /* this */
            iload 1 /* foreground */
            aconst_null
            invokeinterface io.vertx.ext.shell.system.Process.resume:(ZLio/vertx/core/Handler;)V
         1: .line 142
            return
        end local 1 // boolean foreground
        end local 0 // io.vertx.ext.shell.system.Process this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lio/vertx/ext/shell/system/Process;
            0    2     1  foreground  Z
    MethodParameters:
            Name  Flags
      foreground  

  public void resume(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.ext.shell.system.Process this
        start local 1 // io.vertx.core.Handler completionHandler
         0: .line 150
            aload 0 /* this */
            iconst_1
            aload 1 /* completionHandler */
            invokeinterface io.vertx.ext.shell.system.Process.resume:(ZLio/vertx/core/Handler;)V
         1: .line 151
            return
        end local 1 // io.vertx.core.Handler completionHandler
        end local 0 // io.vertx.ext.shell.system.Process this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    2     0               this  Lio/vertx/ext/shell/system/Process;
            0    2     1  completionHandler  Lio/vertx/core/Handler<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)V
    MethodParameters:
                   Name  Flags
      completionHandler  

  public abstract void resume(boolean, io.vertx.core.Handler<java.lang.Void>);
    descriptor: (ZLio/vertx/core/Handler;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (ZLio/vertx/core/Handler<Ljava/lang/Void;>;)V
    MethodParameters:
                   Name  Flags
      foreground         
      completionHandler  

  public void suspend();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.shell.system.Process this
         0: .line 164
            aload 0 /* this */
            aconst_null
            invokeinterface io.vertx.ext.shell.system.Process.suspend:(Lio/vertx/core/Handler;)V
         1: .line 165
            return
        end local 0 // io.vertx.ext.shell.system.Process this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/shell/system/Process;

  public abstract void suspend(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)V
    MethodParameters:
                   Name  Flags
      completionHandler  

  public void terminate();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.shell.system.Process this
         0: .line 178
            aload 0 /* this */
            aconst_null
            invokeinterface io.vertx.ext.shell.system.Process.terminate:(Lio/vertx/core/Handler;)V
         1: .line 179
            return
        end local 0 // io.vertx.ext.shell.system.Process this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/shell/system/Process;

  public abstract void terminate(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)V
    MethodParameters:
                   Name  Flags
      completionHandler  

  public void toBackground();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.shell.system.Process this
         0: .line 192
            aload 0 /* this */
            aconst_null
            invokeinterface io.vertx.ext.shell.system.Process.toBackground:(Lio/vertx/core/Handler;)V
         1: .line 193
            return
        end local 0 // io.vertx.ext.shell.system.Process this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/shell/system/Process;

  public abstract void toBackground(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)V
    MethodParameters:
                   Name  Flags
      completionHandler  

  public void toForeground();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.ext.shell.system.Process this
         0: .line 206
            aload 0 /* this */
            aconst_null
            invokeinterface io.vertx.ext.shell.system.Process.toForeground:(Lio/vertx/core/Handler;)V
         1: .line 207
            return
        end local 0 // io.vertx.ext.shell.system.Process this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/shell/system/Process;

  public abstract void toForeground(io.vertx.core.Handler<java.lang.Void>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Void;>;)V
    MethodParameters:
                   Name  Flags
      completionHandler  
}
SourceFile: "Process.java"
    RuntimeVisibleAnnotations: 
      io.vertx.codegen.annotations.VertxGen()