public abstract class android.app.IntentService extends android.app.Service
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: android.app.IntentService
  super_class: android.app.Service
{
  private volatile android.os.Looper mServiceLooper;
    descriptor: Landroid/os/Looper;
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private volatile android.app.IntentService$ServiceHandler mServiceHandler;
    descriptor: Landroid/app/IntentService$ServiceHandler;
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

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

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

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.app.IntentService this
        start local 1 // java.lang.String name
         0: .line 87
            aload 0 /* this */
            invokespecial android.app.Service.<init>:()V
         1: .line 88
            aload 0 /* this */
            aload 1 /* name */
            putfield android.app.IntentService.mName:Ljava/lang/String;
         2: .line 89
            return
        end local 1 // java.lang.String name
        end local 0 // android.app.IntentService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Landroid/app/IntentService;
            0    3     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public void setIntentRedelivery(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.app.IntentService this
        start local 1 // boolean enabled
         0: .line 108
            aload 0 /* this */
            iload 1 /* enabled */
            putfield android.app.IntentService.mRedelivery:Z
         1: .line 109
            return
        end local 1 // boolean enabled
        end local 0 // android.app.IntentService this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Landroid/app/IntentService;
            0    2     1  enabled  Z
    MethodParameters:
         Name  Flags
      enabled  

  public void onCreate();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // android.app.IntentService this
         0: .line 117
            aload 0 /* this */
            invokespecial android.app.Service.onCreate:()V
         1: .line 118
            new android.os.HandlerThread
            dup
            new java.lang.StringBuilder
            dup
            ldc "IntentService["
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield android.app.IntentService.mName:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "]"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial android.os.HandlerThread.<init>:(Ljava/lang/String;)V
            astore 1 /* thread */
        start local 1 // android.os.HandlerThread thread
         2: .line 119
            aload 1 /* thread */
            invokevirtual android.os.HandlerThread.start:()V
         3: .line 121
            aload 0 /* this */
            aload 1 /* thread */
            invokevirtual android.os.HandlerThread.getLooper:()Landroid/os/Looper;
            putfield android.app.IntentService.mServiceLooper:Landroid/os/Looper;
         4: .line 122
            aload 0 /* this */
            new android.app.IntentService$ServiceHandler
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield android.app.IntentService.mServiceLooper:Landroid/os/Looper;
            invokespecial android.app.IntentService$ServiceHandler.<init>:(Landroid/app/IntentService;Landroid/os/Looper;)V
            putfield android.app.IntentService.mServiceHandler:Landroid/app/IntentService$ServiceHandler;
         5: .line 123
            return
        end local 1 // android.os.HandlerThread thread
        end local 0 // android.app.IntentService this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Landroid/app/IntentService;
            2    6     1  thread  Landroid/os/HandlerThread;

  public void onStart(android.content.Intent, int);
    descriptor: (Landroid/content/Intent;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // android.app.IntentService this
        start local 1 // android.content.Intent intent
        start local 2 // int startId
         0: .line 127
            aload 0 /* this */
            getfield android.app.IntentService.mServiceHandler:Landroid/app/IntentService$ServiceHandler;
            invokevirtual android.app.IntentService$ServiceHandler.obtainMessage:()Landroid/os/Message;
            astore 3 /* msg */
        start local 3 // android.os.Message msg
         1: .line 128
            aload 3 /* msg */
            iload 2 /* startId */
            putfield android.os.Message.arg1:I
         2: .line 129
            aload 3 /* msg */
            aload 1 /* intent */
            putfield android.os.Message.obj:Ljava/lang/Object;
         3: .line 130
            aload 0 /* this */
            getfield android.app.IntentService.mServiceHandler:Landroid/app/IntentService$ServiceHandler;
            aload 3 /* msg */
            invokevirtual android.app.IntentService$ServiceHandler.sendMessage:(Landroid/os/Message;)Z
            pop
         4: .line 131
            return
        end local 3 // android.os.Message msg
        end local 2 // int startId
        end local 1 // android.content.Intent intent
        end local 0 // android.app.IntentService this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Landroid/app/IntentService;
            0    5     1   intent  Landroid/content/Intent;
            0    5     2  startId  I
            1    5     3      msg  Landroid/os/Message;
    MethodParameters:
         Name  Flags
      intent   
      startId  

  public int onStartCommand(android.content.Intent, int, int);
    descriptor: (Landroid/content/Intent;II)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // android.app.IntentService this
        start local 1 // android.content.Intent intent
        start local 2 // int flags
        start local 3 // int startId
         0: .line 141
            aload 0 /* this */
            aload 1 /* intent */
            iload 3 /* startId */
            invokevirtual android.app.IntentService.onStart:(Landroid/content/Intent;I)V
         1: .line 142
            aload 0 /* this */
            getfield android.app.IntentService.mRedelivery:Z
            ifeq 2
            iconst_3
            goto 3
      StackMap locals:
      StackMap stack:
         2: iconst_2
      StackMap locals:
      StackMap stack: int
         3: ireturn
        end local 3 // int startId
        end local 2 // int flags
        end local 1 // android.content.Intent intent
        end local 0 // android.app.IntentService this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Landroid/app/IntentService;
            0    4     1   intent  Landroid/content/Intent;
            0    4     2    flags  I
            0    4     3  startId  I
    MethodParameters:
         Name  Flags
      intent   
      flags    
      startId  

  public void onDestroy();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.app.IntentService this
         0: .line 147
            aload 0 /* this */
            getfield android.app.IntentService.mServiceLooper:Landroid/os/Looper;
            invokevirtual android.os.Looper.quit:()V
         1: .line 148
            return
        end local 0 // android.app.IntentService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Landroid/app/IntentService;

  public android.os.IBinder onBind(android.content.Intent);
    descriptor: (Landroid/content/Intent;)Landroid/os/IBinder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // android.app.IntentService this
        start local 1 // android.content.Intent intent
         0: .line 158
            aconst_null
            areturn
        end local 1 // android.content.Intent intent
        end local 0 // android.app.IntentService this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Landroid/app/IntentService;
            0    1     1  intent  Landroid/content/Intent;
    MethodParameters:
        Name  Flags
      intent  

  protected abstract void onHandleIntent(android.content.Intent);
    descriptor: (Landroid/content/Intent;)V
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
        Name  Flags
      intent  
}
SourceFile: "IntentService.java"
NestMembers:
  android.app.IntentService$ServiceHandler
InnerClasses:
  private final ServiceHandler = android.app.IntentService$ServiceHandler of android.app.IntentService