public class org.springframework.boot.task.TaskSchedulerBuilder
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.boot.task.TaskSchedulerBuilder
  super_class: java.lang.Object
{
  private final java.lang.Integer poolSize;
    descriptor: Ljava/lang/Integer;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.Boolean awaitTermination;
    descriptor: Ljava/lang/Boolean;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.time.Duration awaitTerminationPeriod;
    descriptor: Ljava/time/Duration;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String threadNamePrefix;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.Set<org.springframework.boot.task.TaskSchedulerCustomizer> customizers;
    descriptor: Ljava/util/Set;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Set<Lorg/springframework/boot/task/TaskSchedulerCustomizer;>;

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.springframework.boot.task.TaskSchedulerBuilder this
         0: .line 54
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 55
            aload 0 /* this */
            aconst_null
            putfield org.springframework.boot.task.TaskSchedulerBuilder.poolSize:Ljava/lang/Integer;
         2: .line 56
            aload 0 /* this */
            aconst_null
            putfield org.springframework.boot.task.TaskSchedulerBuilder.awaitTermination:Ljava/lang/Boolean;
         3: .line 57
            aload 0 /* this */
            aconst_null
            putfield org.springframework.boot.task.TaskSchedulerBuilder.awaitTerminationPeriod:Ljava/time/Duration;
         4: .line 58
            aload 0 /* this */
            aconst_null
            putfield org.springframework.boot.task.TaskSchedulerBuilder.threadNamePrefix:Ljava/lang/String;
         5: .line 59
            aload 0 /* this */
            aconst_null
            putfield org.springframework.boot.task.TaskSchedulerBuilder.customizers:Ljava/util/Set;
         6: .line 60
            return
        end local 0 // org.springframework.boot.task.TaskSchedulerBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/springframework/boot/task/TaskSchedulerBuilder;

  public void <init>(java.lang.Integer, java.lang.Boolean, java.time.Duration, java.lang.String, java.util.Set<org.springframework.boot.task.TaskSchedulerCustomizer>);
    descriptor: (Ljava/lang/Integer;Ljava/lang/Boolean;Ljava/time/Duration;Ljava/lang/String;Ljava/util/Set;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=6
        start local 0 // org.springframework.boot.task.TaskSchedulerBuilder this
        start local 1 // java.lang.Integer poolSize
        start local 2 // java.lang.Boolean awaitTermination
        start local 3 // java.time.Duration awaitTerminationPeriod
        start local 4 // java.lang.String threadNamePrefix
        start local 5 // java.util.Set taskSchedulerCustomizers
         0: .line 62
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 64
            aload 0 /* this */
            aload 1 /* poolSize */
            putfield org.springframework.boot.task.TaskSchedulerBuilder.poolSize:Ljava/lang/Integer;
         2: .line 65
            aload 0 /* this */
            aload 2 /* awaitTermination */
            putfield org.springframework.boot.task.TaskSchedulerBuilder.awaitTermination:Ljava/lang/Boolean;
         3: .line 66
            aload 0 /* this */
            aload 3 /* awaitTerminationPeriod */
            putfield org.springframework.boot.task.TaskSchedulerBuilder.awaitTerminationPeriod:Ljava/time/Duration;
         4: .line 67
            aload 0 /* this */
            aload 4 /* threadNamePrefix */
            putfield org.springframework.boot.task.TaskSchedulerBuilder.threadNamePrefix:Ljava/lang/String;
         5: .line 68
            aload 0 /* this */
            aload 5 /* taskSchedulerCustomizers */
            putfield org.springframework.boot.task.TaskSchedulerBuilder.customizers:Ljava/util/Set;
         6: .line 69
            return
        end local 5 // java.util.Set taskSchedulerCustomizers
        end local 4 // java.lang.String threadNamePrefix
        end local 3 // java.time.Duration awaitTerminationPeriod
        end local 2 // java.lang.Boolean awaitTermination
        end local 1 // java.lang.Integer poolSize
        end local 0 // org.springframework.boot.task.TaskSchedulerBuilder this
      LocalVariableTable:
        Start  End  Slot                      Name  Signature
            0    7     0                      this  Lorg/springframework/boot/task/TaskSchedulerBuilder;
            0    7     1                  poolSize  Ljava/lang/Integer;
            0    7     2          awaitTermination  Ljava/lang/Boolean;
            0    7     3    awaitTerminationPeriod  Ljava/time/Duration;
            0    7     4          threadNamePrefix  Ljava/lang/String;
            0    7     5  taskSchedulerCustomizers  Ljava/util/Set<Lorg/springframework/boot/task/TaskSchedulerCustomizer;>;
    Signature: (Ljava/lang/Integer;Ljava/lang/Boolean;Ljava/time/Duration;Ljava/lang/String;Ljava/util/Set<Lorg/springframework/boot/task/TaskSchedulerCustomizer;>;)V
    MethodParameters:
                          Name  Flags
      poolSize                  
      awaitTermination          
      awaitTerminationPeriod    
      threadNamePrefix          
      taskSchedulerCustomizers  

  public org.springframework.boot.task.TaskSchedulerBuilder poolSize(int);
    descriptor: (I)Lorg/springframework/boot/task/TaskSchedulerBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=2, args_size=2
        start local 0 // org.springframework.boot.task.TaskSchedulerBuilder this
        start local 1 // int poolSize
         0: .line 77
            new org.springframework.boot.task.TaskSchedulerBuilder
            dup
            iload 1 /* poolSize */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.awaitTermination:Ljava/lang/Boolean;
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.awaitTerminationPeriod:Ljava/time/Duration;
         1: .line 78
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.threadNamePrefix:Ljava/lang/String;
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.customizers:Ljava/util/Set;
         2: .line 77
            invokespecial org.springframework.boot.task.TaskSchedulerBuilder.<init>:(Ljava/lang/Integer;Ljava/lang/Boolean;Ljava/time/Duration;Ljava/lang/String;Ljava/util/Set;)V
            areturn
        end local 1 // int poolSize
        end local 0 // org.springframework.boot.task.TaskSchedulerBuilder this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/springframework/boot/task/TaskSchedulerBuilder;
            0    3     1  poolSize  I
    MethodParameters:
          Name  Flags
      poolSize  

  public org.springframework.boot.task.TaskSchedulerBuilder awaitTermination(boolean);
    descriptor: (Z)Lorg/springframework/boot/task/TaskSchedulerBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=2, args_size=2
        start local 0 // org.springframework.boot.task.TaskSchedulerBuilder this
        start local 1 // boolean awaitTermination
         0: .line 90
            new org.springframework.boot.task.TaskSchedulerBuilder
            dup
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.poolSize:Ljava/lang/Integer;
            iload 1 /* awaitTermination */
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.awaitTerminationPeriod:Ljava/time/Duration;
         1: .line 91
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.threadNamePrefix:Ljava/lang/String;
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.customizers:Ljava/util/Set;
         2: .line 90
            invokespecial org.springframework.boot.task.TaskSchedulerBuilder.<init>:(Ljava/lang/Integer;Ljava/lang/Boolean;Ljava/time/Duration;Ljava/lang/String;Ljava/util/Set;)V
            areturn
        end local 1 // boolean awaitTermination
        end local 0 // org.springframework.boot.task.TaskSchedulerBuilder this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    3     0              this  Lorg/springframework/boot/task/TaskSchedulerBuilder;
            0    3     1  awaitTermination  Z
    MethodParameters:
                  Name  Flags
      awaitTermination  

  public org.springframework.boot.task.TaskSchedulerBuilder awaitTerminationPeriod(java.time.Duration);
    descriptor: (Ljava/time/Duration;)Lorg/springframework/boot/task/TaskSchedulerBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=2, args_size=2
        start local 0 // org.springframework.boot.task.TaskSchedulerBuilder this
        start local 1 // java.time.Duration awaitTerminationPeriod
         0: .line 104
            new org.springframework.boot.task.TaskSchedulerBuilder
            dup
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.poolSize:Ljava/lang/Integer;
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.awaitTermination:Ljava/lang/Boolean;
            aload 1 /* awaitTerminationPeriod */
         1: .line 105
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.threadNamePrefix:Ljava/lang/String;
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.customizers:Ljava/util/Set;
         2: .line 104
            invokespecial org.springframework.boot.task.TaskSchedulerBuilder.<init>:(Ljava/lang/Integer;Ljava/lang/Boolean;Ljava/time/Duration;Ljava/lang/String;Ljava/util/Set;)V
            areturn
        end local 1 // java.time.Duration awaitTerminationPeriod
        end local 0 // org.springframework.boot.task.TaskSchedulerBuilder this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0    3     0                    this  Lorg/springframework/boot/task/TaskSchedulerBuilder;
            0    3     1  awaitTerminationPeriod  Ljava/time/Duration;
    MethodParameters:
                        Name  Flags
      awaitTerminationPeriod  

  public org.springframework.boot.task.TaskSchedulerBuilder threadNamePrefix(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/springframework/boot/task/TaskSchedulerBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=2, args_size=2
        start local 0 // org.springframework.boot.task.TaskSchedulerBuilder this
        start local 1 // java.lang.String threadNamePrefix
         0: .line 114
            new org.springframework.boot.task.TaskSchedulerBuilder
            dup
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.poolSize:Ljava/lang/Integer;
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.awaitTermination:Ljava/lang/Boolean;
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.awaitTerminationPeriod:Ljava/time/Duration;
         1: .line 115
            aload 1 /* threadNamePrefix */
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.customizers:Ljava/util/Set;
         2: .line 114
            invokespecial org.springframework.boot.task.TaskSchedulerBuilder.<init>:(Ljava/lang/Integer;Ljava/lang/Boolean;Ljava/time/Duration;Ljava/lang/String;Ljava/util/Set;)V
            areturn
        end local 1 // java.lang.String threadNamePrefix
        end local 0 // org.springframework.boot.task.TaskSchedulerBuilder this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    3     0              this  Lorg/springframework/boot/task/TaskSchedulerBuilder;
            0    3     1  threadNamePrefix  Ljava/lang/String;
    MethodParameters:
                  Name  Flags
      threadNamePrefix  

  public org.springframework.boot.task.TaskSchedulerBuilder customizers(org.springframework.boot.task.TaskSchedulerCustomizer[]);
    descriptor: ([Lorg/springframework/boot/task/TaskSchedulerCustomizer;)Lorg/springframework/boot/task/TaskSchedulerBuilder;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.boot.task.TaskSchedulerBuilder this
        start local 1 // org.springframework.boot.task.TaskSchedulerCustomizer[] customizers
         0: .line 128
            aload 1 /* customizers */
            ldc "Customizers must not be null"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         1: .line 129
            aload 0 /* this */
            aload 1 /* customizers */
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokevirtual org.springframework.boot.task.TaskSchedulerBuilder.customizers:(Ljava/lang/Iterable;)Lorg/springframework/boot/task/TaskSchedulerBuilder;
            areturn
        end local 1 // org.springframework.boot.task.TaskSchedulerCustomizer[] customizers
        end local 0 // org.springframework.boot.task.TaskSchedulerBuilder this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/springframework/boot/task/TaskSchedulerBuilder;
            0    2     1  customizers  [Lorg/springframework/boot/task/TaskSchedulerCustomizer;
    MethodParameters:
             Name  Flags
      customizers  

  public org.springframework.boot.task.TaskSchedulerBuilder customizers(java.lang.Iterable<org.springframework.boot.task.TaskSchedulerCustomizer>);
    descriptor: (Ljava/lang/Iterable;)Lorg/springframework/boot/task/TaskSchedulerBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=2, args_size=2
        start local 0 // org.springframework.boot.task.TaskSchedulerBuilder this
        start local 1 // java.lang.Iterable customizers
         0: .line 142
            aload 1 /* customizers */
            ldc "Customizers must not be null"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         1: .line 143
            new org.springframework.boot.task.TaskSchedulerBuilder
            dup
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.poolSize:Ljava/lang/Integer;
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.awaitTermination:Ljava/lang/Boolean;
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.awaitTerminationPeriod:Ljava/time/Duration;
         2: .line 144
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.threadNamePrefix:Ljava/lang/String;
            aload 0 /* this */
            aconst_null
            aload 1 /* customizers */
            invokevirtual org.springframework.boot.task.TaskSchedulerBuilder.append:(Ljava/util/Set;Ljava/lang/Iterable;)Ljava/util/Set;
         3: .line 143
            invokespecial org.springframework.boot.task.TaskSchedulerBuilder.<init>:(Ljava/lang/Integer;Ljava/lang/Boolean;Ljava/time/Duration;Ljava/lang/String;Ljava/util/Set;)V
            areturn
        end local 1 // java.lang.Iterable customizers
        end local 0 // org.springframework.boot.task.TaskSchedulerBuilder this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lorg/springframework/boot/task/TaskSchedulerBuilder;
            0    4     1  customizers  Ljava/lang/Iterable<Lorg/springframework/boot/task/TaskSchedulerCustomizer;>;
    Signature: (Ljava/lang/Iterable<Lorg/springframework/boot/task/TaskSchedulerCustomizer;>;)Lorg/springframework/boot/task/TaskSchedulerBuilder;
    MethodParameters:
             Name  Flags
      customizers  

  public org.springframework.boot.task.TaskSchedulerBuilder additionalCustomizers(org.springframework.boot.task.TaskSchedulerCustomizer[]);
    descriptor: ([Lorg/springframework/boot/task/TaskSchedulerCustomizer;)Lorg/springframework/boot/task/TaskSchedulerBuilder;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.boot.task.TaskSchedulerBuilder this
        start local 1 // org.springframework.boot.task.TaskSchedulerCustomizer[] customizers
         0: .line 156
            aload 1 /* customizers */
            ldc "Customizers must not be null"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         1: .line 157
            aload 0 /* this */
            aload 1 /* customizers */
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokevirtual org.springframework.boot.task.TaskSchedulerBuilder.additionalCustomizers:(Ljava/lang/Iterable;)Lorg/springframework/boot/task/TaskSchedulerBuilder;
            areturn
        end local 1 // org.springframework.boot.task.TaskSchedulerCustomizer[] customizers
        end local 0 // org.springframework.boot.task.TaskSchedulerBuilder this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/springframework/boot/task/TaskSchedulerBuilder;
            0    2     1  customizers  [Lorg/springframework/boot/task/TaskSchedulerCustomizer;
    MethodParameters:
             Name  Flags
      customizers  

  public org.springframework.boot.task.TaskSchedulerBuilder additionalCustomizers(java.lang.Iterable<org.springframework.boot.task.TaskSchedulerCustomizer>);
    descriptor: (Ljava/lang/Iterable;)Lorg/springframework/boot/task/TaskSchedulerBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=2, args_size=2
        start local 0 // org.springframework.boot.task.TaskSchedulerBuilder this
        start local 1 // java.lang.Iterable customizers
         0: .line 169
            aload 1 /* customizers */
            ldc "Customizers must not be null"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         1: .line 170
            new org.springframework.boot.task.TaskSchedulerBuilder
            dup
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.poolSize:Ljava/lang/Integer;
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.awaitTermination:Ljava/lang/Boolean;
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.awaitTerminationPeriod:Ljava/time/Duration;
         2: .line 171
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.threadNamePrefix:Ljava/lang/String;
            aload 0 /* this */
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.customizers:Ljava/util/Set;
            aload 1 /* customizers */
            invokevirtual org.springframework.boot.task.TaskSchedulerBuilder.append:(Ljava/util/Set;Ljava/lang/Iterable;)Ljava/util/Set;
         3: .line 170
            invokespecial org.springframework.boot.task.TaskSchedulerBuilder.<init>:(Ljava/lang/Integer;Ljava/lang/Boolean;Ljava/time/Duration;Ljava/lang/String;Ljava/util/Set;)V
            areturn
        end local 1 // java.lang.Iterable customizers
        end local 0 // org.springframework.boot.task.TaskSchedulerBuilder this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lorg/springframework/boot/task/TaskSchedulerBuilder;
            0    4     1  customizers  Ljava/lang/Iterable<Lorg/springframework/boot/task/TaskSchedulerCustomizer;>;
    Signature: (Ljava/lang/Iterable<Lorg/springframework/boot/task/TaskSchedulerCustomizer;>;)Lorg/springframework/boot/task/TaskSchedulerBuilder;
    MethodParameters:
             Name  Flags
      customizers  

  public org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler build();
    descriptor: ()Lorg/springframework/scheduling/concurrent/ThreadPoolTaskScheduler;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.springframework.boot.task.TaskSchedulerBuilder this
         0: .line 181
            aload 0 /* this */
            new org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler
            dup
            invokespecial org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler.<init>:()V
            invokevirtual org.springframework.boot.task.TaskSchedulerBuilder.configure:(Lorg/springframework/scheduling/concurrent/ThreadPoolTaskScheduler;)Lorg/springframework/scheduling/concurrent/ThreadPoolTaskScheduler;
            areturn
        end local 0 // org.springframework.boot.task.TaskSchedulerBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/boot/task/TaskSchedulerBuilder;

  public <T extends org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler> T configure();
    descriptor: (Lorg/springframework/scheduling/concurrent/ThreadPoolTaskScheduler;)Lorg/springframework/scheduling/concurrent/ThreadPoolTaskScheduler;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.springframework.boot.task.TaskSchedulerBuilder this
        start local 1 // org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler taskScheduler
         0: .line 192
            invokestatic org.springframework.boot.context.properties.PropertyMapper.get:()Lorg/springframework/boot/context/properties/PropertyMapper;
            invokevirtual org.springframework.boot.context.properties.PropertyMapper.alwaysApplyingWhenNonNull:()Lorg/springframework/boot/context/properties/PropertyMapper;
            astore 2 /* map */
        start local 2 // org.springframework.boot.context.properties.PropertyMapper map
         1: .line 193
            aload 2 /* map */
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.poolSize:Ljava/lang/Integer;
            invokevirtual org.springframework.boot.context.properties.PropertyMapper.from:(Ljava/lang/Object;)Lorg/springframework/boot/context/properties/PropertyMapper$Source;
            aload 1 /* taskScheduler */
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic accept(Lorg/springframework/scheduling/concurrent/ThreadPoolTaskScheduler;)Ljava/util/function/Consumer;
              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
                  org/springframework/scheduling/concurrent/ThreadPoolTaskScheduler.setPoolSize(I)V (5)
                  (Ljava/lang/Integer;)V
            invokevirtual org.springframework.boot.context.properties.PropertyMapper$Source.to:(Ljava/util/function/Consumer;)V
         2: .line 194
            aload 2 /* map */
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.awaitTermination:Ljava/lang/Boolean;
            invokevirtual org.springframework.boot.context.properties.PropertyMapper.from:(Ljava/lang/Object;)Lorg/springframework/boot/context/properties/PropertyMapper$Source;
            aload 1 /* taskScheduler */
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic accept(Lorg/springframework/scheduling/concurrent/ThreadPoolTaskScheduler;)Ljava/util/function/Consumer;
              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
                  org/springframework/scheduling/concurrent/ExecutorConfigurationSupport.setWaitForTasksToCompleteOnShutdown(Z)V (5)
                  (Ljava/lang/Boolean;)V
            invokevirtual org.springframework.boot.context.properties.PropertyMapper$Source.to:(Ljava/util/function/Consumer;)V
         3: .line 195
            aload 2 /* map */
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.awaitTerminationPeriod:Ljava/time/Duration;
            invokevirtual org.springframework.boot.context.properties.PropertyMapper.from:(Ljava/lang/Object;)Lorg/springframework/boot/context/properties/PropertyMapper$Source;
            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;
                  java/time/Duration.getSeconds()J (5)
                  (Ljava/time/Duration;)Ljava/lang/Long;
            invokevirtual org.springframework.boot.context.properties.PropertyMapper$Source.asInt:(Ljava/util/function/Function;)Lorg/springframework/boot/context/properties/PropertyMapper$Source;
            aload 1 /* taskScheduler */
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic accept(Lorg/springframework/scheduling/concurrent/ThreadPoolTaskScheduler;)Ljava/util/function/Consumer;
              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
                  org/springframework/scheduling/concurrent/ExecutorConfigurationSupport.setAwaitTerminationSeconds(I)V (5)
                  (Ljava/lang/Integer;)V
            invokevirtual org.springframework.boot.context.properties.PropertyMapper$Source.to:(Ljava/util/function/Consumer;)V
         4: .line 196
            aload 2 /* map */
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.threadNamePrefix:Ljava/lang/String;
            invokevirtual org.springframework.boot.context.properties.PropertyMapper.from:(Ljava/lang/Object;)Lorg/springframework/boot/context/properties/PropertyMapper$Source;
            aload 1 /* taskScheduler */
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic accept(Lorg/springframework/scheduling/concurrent/ThreadPoolTaskScheduler;)Ljava/util/function/Consumer;
              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
                  org/springframework/scheduling/concurrent/ExecutorConfigurationSupport.setThreadNamePrefix(Ljava/lang/String;)V (5)
                  (Ljava/lang/String;)V
            invokevirtual org.springframework.boot.context.properties.PropertyMapper$Source.to:(Ljava/util/function/Consumer;)V
         5: .line 197
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.customizers:Ljava/util/Set;
            invokestatic org.springframework.util.CollectionUtils.isEmpty:(Ljava/util/Collection;)Z
            ifne 7
         6: .line 198
            aload 0 /* this */
            getfield org.springframework.boot.task.TaskSchedulerBuilder.customizers:Ljava/util/Set;
            aload 1 /* taskScheduler */
            invokedynamic accept(Lorg/springframework/scheduling/concurrent/ThreadPoolTaskScheduler;)Ljava/util/function/Consumer;
              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
                  org/springframework/boot/task/TaskSchedulerBuilder.lambda$5(Lorg/springframework/scheduling/concurrent/ThreadPoolTaskScheduler;Lorg/springframework/boot/task/TaskSchedulerCustomizer;)V (6)
                  (Lorg/springframework/boot/task/TaskSchedulerCustomizer;)V
            invokeinterface java.util.Set.forEach:(Ljava/util/function/Consumer;)V
         7: .line 200
      StackMap locals: org.springframework.boot.context.properties.PropertyMapper
      StackMap stack:
            aload 1 /* taskScheduler */
            areturn
        end local 2 // org.springframework.boot.context.properties.PropertyMapper map
        end local 1 // org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler taskScheduler
        end local 0 // org.springframework.boot.task.TaskSchedulerBuilder this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    8     0           this  Lorg/springframework/boot/task/TaskSchedulerBuilder;
            0    8     1  taskScheduler  TT;
            1    8     2            map  Lorg/springframework/boot/context/properties/PropertyMapper;
    Signature: <T:Lorg/springframework/scheduling/concurrent/ThreadPoolTaskScheduler;>(TT;)TT;
    MethodParameters:
               Name  Flags
      taskScheduler  

  private <T> java.util.Set<T> append(java.util.Set<T>, java.lang.Iterable<? extends T>);
    descriptor: (Ljava/util/Set;Ljava/lang/Iterable;)Ljava/util/Set;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.springframework.boot.task.TaskSchedulerBuilder this
        start local 1 // java.util.Set set
        start local 2 // java.lang.Iterable additions
         0: .line 204
            new java.util.LinkedHashSet
            dup
            aload 1 /* set */
            ifnull 1
            aload 1 /* set */
            goto 2
      StackMap locals: org.springframework.boot.task.TaskSchedulerBuilder java.util.Set java.lang.Iterable
      StackMap stack: new 0 new 0
         1: invokestatic java.util.Collections.emptySet:()Ljava/util/Set;
      StackMap locals: org.springframework.boot.task.TaskSchedulerBuilder java.util.Set java.lang.Iterable
      StackMap stack: new 0 new 0 java.util.Set
         2: invokespecial java.util.LinkedHashSet.<init>:(Ljava/util/Collection;)V
            astore 3 /* result */
        start local 3 // java.util.Set result
         3: .line 205
            aload 2 /* additions */
            aload 3 /* result */
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic accept(Ljava/util/Set;)Ljava/util/function/Consumer;
              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
                  java/util/Set.add(Ljava/lang/Object;)Z (9 itf)
                  (Ljava/lang/Object;)V
            invokeinterface java.lang.Iterable.forEach:(Ljava/util/function/Consumer;)V
         4: .line 206
            aload 3 /* result */
            invokestatic java.util.Collections.unmodifiableSet:(Ljava/util/Set;)Ljava/util/Set;
            areturn
        end local 3 // java.util.Set result
        end local 2 // java.lang.Iterable additions
        end local 1 // java.util.Set set
        end local 0 // org.springframework.boot.task.TaskSchedulerBuilder this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/springframework/boot/task/TaskSchedulerBuilder;
            0    5     1        set  Ljava/util/Set<TT;>;
            0    5     2  additions  Ljava/lang/Iterable<+TT;>;
            3    5     3     result  Ljava/util/Set<TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/util/Set<TT;>;Ljava/lang/Iterable<+TT;>;)Ljava/util/Set<TT;>;
    MethodParameters:
           Name  Flags
      set        
      additions  

  private static void lambda$5(org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler, org.springframework.boot.task.TaskSchedulerCustomizer);
    descriptor: (Lorg/springframework/scheduling/concurrent/ThreadPoolTaskScheduler;Lorg/springframework/boot/task/TaskSchedulerCustomizer;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // org.springframework.boot.task.TaskSchedulerCustomizer customizer
         0: .line 198
            aload 1 /* customizer */
            aload 0
            invokeinterface org.springframework.boot.task.TaskSchedulerCustomizer.customize:(Lorg/springframework/scheduling/concurrent/ThreadPoolTaskScheduler;)V
            return
        end local 1 // org.springframework.boot.task.TaskSchedulerCustomizer customizer
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     1  customizer  Lorg/springframework/boot/task/TaskSchedulerCustomizer;
}
SourceFile: "TaskSchedulerBuilder.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public final Source = org.springframework.boot.context.properties.PropertyMapper$Source of org.springframework.boot.context.properties.PropertyMapper