public class net.sf.cglib.core.internal.LoadingCache<K, KK, V>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: net.sf.cglib.core.internal.LoadingCache
  super_class: java.lang.Object
{
  protected final java.util.concurrent.ConcurrentMap<KK, java.lang.Object> map;
    descriptor: Ljava/util/concurrent/ConcurrentMap;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Signature: Ljava/util/concurrent/ConcurrentMap<TKK;Ljava/lang/Object;>;

  protected final net.sf.cglib.core.internal.Function<K, V> loader;
    descriptor: Lnet/sf/cglib/core/internal/Function;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Signature: Lnet/sf/cglib/core/internal/Function<TK;TV;>;

  protected final net.sf.cglib.core.internal.Function<K, KK> keyMapper;
    descriptor: Lnet/sf/cglib/core/internal/Function;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Signature: Lnet/sf/cglib/core/internal/Function<TK;TKK;>;

  public static final net.sf.cglib.core.internal.Function IDENTITY;
    descriptor: Lnet/sf/cglib/core/internal/Function;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 10
            new net.sf.cglib.core.internal.LoadingCache$1
            dup
            invokespecial net.sf.cglib.core.internal.LoadingCache$1.<init>:()V
            putstatic net.sf.cglib.core.internal.LoadingCache.IDENTITY:Lnet/sf/cglib/core/internal/Function;
         1: .line 14
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(net.sf.cglib.core.internal.Function<K, KK>, net.sf.cglib.core.internal.Function<K, V>);
    descriptor: (Lnet/sf/cglib/core/internal/Function;Lnet/sf/cglib/core/internal/Function;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // net.sf.cglib.core.internal.LoadingCache this
        start local 1 // net.sf.cglib.core.internal.Function keyMapper
        start local 2 // net.sf.cglib.core.internal.Function loader
         0: .line 16
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 17
            aload 0 /* this */
            aload 1 /* keyMapper */
            putfield net.sf.cglib.core.internal.LoadingCache.keyMapper:Lnet/sf/cglib/core/internal/Function;
         2: .line 18
            aload 0 /* this */
            aload 2 /* loader */
            putfield net.sf.cglib.core.internal.LoadingCache.loader:Lnet/sf/cglib/core/internal/Function;
         3: .line 19
            aload 0 /* this */
            new java.util.concurrent.ConcurrentHashMap
            dup
            invokespecial java.util.concurrent.ConcurrentHashMap.<init>:()V
            putfield net.sf.cglib.core.internal.LoadingCache.map:Ljava/util/concurrent/ConcurrentMap;
         4: .line 20
            return
        end local 2 // net.sf.cglib.core.internal.Function loader
        end local 1 // net.sf.cglib.core.internal.Function keyMapper
        end local 0 // net.sf.cglib.core.internal.LoadingCache this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lnet/sf/cglib/core/internal/LoadingCache<TK;TKK;TV;>;
            0    5     1  keyMapper  Lnet/sf/cglib/core/internal/Function<TK;TKK;>;
            0    5     2     loader  Lnet/sf/cglib/core/internal/Function<TK;TV;>;
    Signature: (Lnet/sf/cglib/core/internal/Function<TK;TKK;>;Lnet/sf/cglib/core/internal/Function<TK;TV;>;)V
    MethodParameters:
           Name  Flags
      keyMapper  
      loader     

  public static <K> net.sf.cglib.core.internal.Function<K, K> identity();
    descriptor: ()Lnet/sf/cglib/core/internal/Function;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 24
            getstatic net.sf.cglib.core.internal.LoadingCache.IDENTITY:Lnet/sf/cglib/core/internal/Function;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Signature: <K:Ljava/lang/Object;>()Lnet/sf/cglib/core/internal/Function<TK;TK;>;

  public V get();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // net.sf.cglib.core.internal.LoadingCache this
        start local 1 // java.lang.Object key
         0: .line 28
            aload 0 /* this */
            getfield net.sf.cglib.core.internal.LoadingCache.keyMapper:Lnet/sf/cglib/core/internal/Function;
            aload 1 /* key */
            invokeinterface net.sf.cglib.core.internal.Function.apply:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 2 /* cacheKey */
        start local 2 // java.lang.Object cacheKey
         1: .line 29
            aload 0 /* this */
            getfield net.sf.cglib.core.internal.LoadingCache.map:Ljava/util/concurrent/ConcurrentMap;
            aload 2 /* cacheKey */
            invokeinterface java.util.concurrent.ConcurrentMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 3 /* v */
        start local 3 // java.lang.Object v
         2: .line 30
            aload 3 /* v */
            ifnull 4
            aload 3 /* v */
            instanceof java.util.concurrent.FutureTask
            ifne 4
         3: .line 31
            aload 3 /* v */
            areturn
         4: .line 34
      StackMap locals: java.lang.Object java.lang.Object
      StackMap stack:
            aload 0 /* this */
            aload 1 /* key */
            aload 2 /* cacheKey */
            aload 3 /* v */
            invokevirtual net.sf.cglib.core.internal.LoadingCache.createEntry:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 3 // java.lang.Object v
        end local 2 // java.lang.Object cacheKey
        end local 1 // java.lang.Object key
        end local 0 // net.sf.cglib.core.internal.LoadingCache this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lnet/sf/cglib/core/internal/LoadingCache<TK;TKK;TV;>;
            0    5     1       key  TK;
            1    5     2  cacheKey  TKK;
            2    5     3         v  Ljava/lang/Object;
    Signature: (TK;)TV;
    MethodParameters:
      Name  Flags
      key   

  protected V createEntry(K, KK, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=9, args_size=4
        start local 0 // net.sf.cglib.core.internal.LoadingCache this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object cacheKey
        start local 3 // java.lang.Object v
         0: .line 47
            iconst_0
            istore 5 /* creator */
        start local 5 // boolean creator
         1: .line 48
            aload 3 /* v */
            ifnull 4
         2: .line 50
            aload 3 /* v */
            checkcast java.util.concurrent.FutureTask
            astore 4 /* task */
        start local 4 // java.util.concurrent.FutureTask task
         3: .line 51
            goto 14
        end local 4 // java.util.concurrent.FutureTask task
         4: .line 52
      StackMap locals: net.sf.cglib.core.internal.LoadingCache java.lang.Object java.lang.Object java.lang.Object top int
      StackMap stack:
            new java.util.concurrent.FutureTask
            dup
            new net.sf.cglib.core.internal.LoadingCache$2
            dup
            aload 0 /* this */
            aload 1 /* key */
            invokespecial net.sf.cglib.core.internal.LoadingCache$2.<init>:(Lnet/sf/cglib/core/internal/LoadingCache;Ljava/lang/Object;)V
            invokespecial java.util.concurrent.FutureTask.<init>:(Ljava/util/concurrent/Callable;)V
            astore 4 /* task */
        start local 4 // java.util.concurrent.FutureTask task
         5: .line 57
            aload 0 /* this */
            getfield net.sf.cglib.core.internal.LoadingCache.map:Ljava/util/concurrent/ConcurrentMap;
            aload 2 /* cacheKey */
            aload 4 /* task */
            invokeinterface java.util.concurrent.ConcurrentMap.putIfAbsent:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            astore 6 /* prevTask */
        start local 6 // java.lang.Object prevTask
         6: .line 58
            aload 6 /* prevTask */
            ifnonnull 10
         7: .line 60
            iconst_1
            istore 5 /* creator */
         8: .line 61
            aload 4 /* task */
            invokevirtual java.util.concurrent.FutureTask.run:()V
         9: .line 62
            goto 14
      StackMap locals: net.sf.cglib.core.internal.LoadingCache java.lang.Object java.lang.Object java.lang.Object java.util.concurrent.FutureTask int java.lang.Object
      StackMap stack:
        10: aload 6 /* prevTask */
            instanceof java.util.concurrent.FutureTask
            ifeq 13
        11: .line 63
            aload 6 /* prevTask */
            checkcast java.util.concurrent.FutureTask
            astore 4 /* task */
        12: .line 64
            goto 14
        13: .line 65
      StackMap locals:
      StackMap stack:
            aload 6 /* prevTask */
            areturn
        end local 6 // java.lang.Object prevTask
        14: .line 71
      StackMap locals:
      StackMap stack:
            aload 4 /* task */
            invokevirtual java.util.concurrent.FutureTask.get:()Ljava/lang/Object;
            astore 6 /* result */
        start local 6 // java.lang.Object result
        15: .line 72
            goto 23
        end local 6 // java.lang.Object result
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
        16: astore 7 /* e */
        start local 7 // java.lang.InterruptedException e
        17: .line 73
            new java.lang.IllegalStateException
            dup
            ldc "Interrupted while loading cache item"
            aload 7 /* e */
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 7 // java.lang.InterruptedException e
        18: .line 74
      StackMap locals:
      StackMap stack: java.util.concurrent.ExecutionException
            astore 7 /* e */
        start local 7 // java.util.concurrent.ExecutionException e
        19: .line 75
            aload 7 /* e */
            invokevirtual java.util.concurrent.ExecutionException.getCause:()Ljava/lang/Throwable;
            astore 8 /* cause */
        start local 8 // java.lang.Throwable cause
        20: .line 76
            aload 8 /* cause */
            instanceof java.lang.RuntimeException
            ifeq 22
        21: .line 77
            aload 8 /* cause */
            checkcast java.lang.RuntimeException
            athrow
        22: .line 79
      StackMap locals: net.sf.cglib.core.internal.LoadingCache java.lang.Object java.lang.Object java.lang.Object java.util.concurrent.FutureTask int top java.util.concurrent.ExecutionException java.lang.Throwable
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            ldc "Unable to load cache item"
            aload 8 /* cause */
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 8 // java.lang.Throwable cause
        end local 7 // java.util.concurrent.ExecutionException e
        start local 6 // java.lang.Object result
        23: .line 81
      StackMap locals: net.sf.cglib.core.internal.LoadingCache java.lang.Object java.lang.Object java.lang.Object java.util.concurrent.FutureTask int java.lang.Object
      StackMap stack:
            iload 5 /* creator */
            ifeq 25
        24: .line 82
            aload 0 /* this */
            getfield net.sf.cglib.core.internal.LoadingCache.map:Ljava/util/concurrent/ConcurrentMap;
            aload 2 /* cacheKey */
            aload 6 /* result */
            invokeinterface java.util.concurrent.ConcurrentMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        25: .line 84
      StackMap locals:
      StackMap stack:
            aload 6 /* result */
            areturn
        end local 6 // java.lang.Object result
        end local 5 // boolean creator
        end local 4 // java.util.concurrent.FutureTask task
        end local 3 // java.lang.Object v
        end local 2 // java.lang.Object cacheKey
        end local 1 // java.lang.Object key
        end local 0 // net.sf.cglib.core.internal.LoadingCache this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   26     0      this  Lnet/sf/cglib/core/internal/LoadingCache<TK;TKK;TV;>;
            0   26     1       key  TK;
            0   26     2  cacheKey  TKK;
            0   26     3         v  Ljava/lang/Object;
            3    4     4      task  Ljava/util/concurrent/FutureTask<TV;>;
            5   26     4      task  Ljava/util/concurrent/FutureTask<TV;>;
            1   26     5   creator  Z
            6   14     6  prevTask  Ljava/lang/Object;
           15   16     6    result  TV;
           23   26     6    result  TV;
           17   18     7         e  Ljava/lang/InterruptedException;
           19   23     7         e  Ljava/util/concurrent/ExecutionException;
           20   23     8     cause  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
          14    15      16  Class java.lang.InterruptedException
          14    15      18  Class java.util.concurrent.ExecutionException
    Signature: (TK;TKK;Ljava/lang/Object;)TV;
    MethodParameters:
          Name  Flags
      key       final
      cacheKey  
      v         
}
Signature: <K:Ljava/lang/Object;KK:Ljava/lang/Object;V:Ljava/lang/Object;>Ljava/lang/Object;
SourceFile: "LoadingCache.java"
NestMembers:
  net.sf.cglib.core.internal.LoadingCache$1  net.sf.cglib.core.internal.LoadingCache$2
InnerClasses:
  net.sf.cglib.core.internal.LoadingCache$1
  net.sf.cglib.core.internal.LoadingCache$2