public class com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream extends com.netflix.hystrix.metric.consumer.BucketedRollingCounterStream<com.netflix.hystrix.metric.HystrixCommandCompletion, long[], long[]>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream
  super_class: com.netflix.hystrix.metric.consumer.BucketedRollingCounterStream
{
  private static final java.util.concurrent.ConcurrentMap<java.lang.String, com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream> streams;
    descriptor: Ljava/util/concurrent/ConcurrentMap;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Ljava/util/concurrent/ConcurrentMap<Ljava/lang/String;Lcom/netflix/hystrix/metric/consumer/RollingThreadPoolEventCounterStream;>;

  private static final int ALL_EVENT_TYPES_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 44
            new java.util.concurrent.ConcurrentHashMap
            dup
            invokespecial java.util.concurrent.ConcurrentHashMap.<init>:()V
            putstatic com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream.streams:Ljava/util/concurrent/ConcurrentMap;
         1: .line 46
            invokestatic com.netflix.hystrix.HystrixEventType$ThreadPool.values:()[Lcom/netflix/hystrix/HystrixEventType$ThreadPool;
            arraylength
            putstatic com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream.ALL_EVENT_TYPES_SIZE:I
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream getInstance(com.netflix.hystrix.HystrixThreadPoolKey, com.netflix.hystrix.HystrixThreadPoolProperties);
    descriptor: (Lcom/netflix/hystrix/HystrixThreadPoolKey;Lcom/netflix/hystrix/HystrixThreadPoolProperties;)Lcom/netflix/hystrix/metric/consumer/RollingThreadPoolEventCounterStream;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // com.netflix.hystrix.HystrixThreadPoolKey threadPoolKey
        start local 1 // com.netflix.hystrix.HystrixThreadPoolProperties properties
         0: .line 49
            aload 1 /* properties */
            invokevirtual com.netflix.hystrix.HystrixThreadPoolProperties.metricsRollingStatisticalWindowInMilliseconds:()Lcom/netflix/hystrix/strategy/properties/HystrixProperty;
            invokeinterface com.netflix.hystrix.strategy.properties.HystrixProperty.get:()Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            istore 2 /* counterMetricWindow */
        start local 2 // int counterMetricWindow
         1: .line 50
            aload 1 /* properties */
            invokevirtual com.netflix.hystrix.HystrixThreadPoolProperties.metricsRollingStatisticalWindowBuckets:()Lcom/netflix/hystrix/strategy/properties/HystrixProperty;
            invokeinterface com.netflix.hystrix.strategy.properties.HystrixProperty.get:()Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            istore 3 /* numCounterBuckets */
        start local 3 // int numCounterBuckets
         2: .line 51
            iload 2 /* counterMetricWindow */
            iload 3 /* numCounterBuckets */
            idiv
            istore 4 /* counterBucketSizeInMs */
        start local 4 // int counterBucketSizeInMs
         3: .line 53
            aload 0 /* threadPoolKey */
            iload 3 /* numCounterBuckets */
            iload 4 /* counterBucketSizeInMs */
            invokestatic com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream.getInstance:(Lcom/netflix/hystrix/HystrixThreadPoolKey;II)Lcom/netflix/hystrix/metric/consumer/RollingThreadPoolEventCounterStream;
            areturn
        end local 4 // int counterBucketSizeInMs
        end local 3 // int numCounterBuckets
        end local 2 // int counterMetricWindow
        end local 1 // com.netflix.hystrix.HystrixThreadPoolProperties properties
        end local 0 // com.netflix.hystrix.HystrixThreadPoolKey threadPoolKey
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    4     0          threadPoolKey  Lcom/netflix/hystrix/HystrixThreadPoolKey;
            0    4     1             properties  Lcom/netflix/hystrix/HystrixThreadPoolProperties;
            1    4     2    counterMetricWindow  I
            2    4     3      numCounterBuckets  I
            3    4     4  counterBucketSizeInMs  I
    MethodParameters:
               Name  Flags
      threadPoolKey  
      properties     

  public static com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream getInstance(com.netflix.hystrix.HystrixThreadPoolKey, int, int);
    descriptor: (Lcom/netflix/hystrix/HystrixThreadPoolKey;II)Lcom/netflix/hystrix/metric/consumer/RollingThreadPoolEventCounterStream;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=7, locals=7, args_size=3
        start local 0 // com.netflix.hystrix.HystrixThreadPoolKey threadPoolKey
        start local 1 // int numBuckets
        start local 2 // int bucketSizeInMs
         0: .line 57
            getstatic com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream.streams:Ljava/util/concurrent/ConcurrentMap;
            aload 0 /* threadPoolKey */
            invokeinterface com.netflix.hystrix.HystrixThreadPoolKey.name:()Ljava/lang/String;
            invokeinterface java.util.concurrent.ConcurrentMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream
            astore 3 /* initialStream */
        start local 3 // com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream initialStream
         1: .line 58
            aload 3 /* initialStream */
            ifnull 3
         2: .line 59
            aload 3 /* initialStream */
            areturn
         3: .line 61
      StackMap locals: com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream
      StackMap stack:
            ldc Lcom/netflix/hystrix/metric/consumer/RollingThreadPoolEventCounterStream;
            dup
            astore 4
            monitorenter
         4: .line 62
            getstatic com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream.streams:Ljava/util/concurrent/ConcurrentMap;
            aload 0 /* threadPoolKey */
            invokeinterface com.netflix.hystrix.HystrixThreadPoolKey.name:()Ljava/lang/String;
            invokeinterface java.util.concurrent.ConcurrentMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream
            astore 5 /* existingStream */
        start local 5 // com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream existingStream
         5: .line 63
            aload 5 /* existingStream */
            ifnonnull 13
         6: .line 65
            new com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream
            dup
            aload 0 /* threadPoolKey */
            iload 1 /* numBuckets */
            iload 2 /* bucketSizeInMs */
         7: .line 66
            getstatic com.netflix.hystrix.HystrixThreadPoolMetrics.appendEventToBucket:Lrx/functions/Func2;
            getstatic com.netflix.hystrix.HystrixThreadPoolMetrics.counterAggregator:Lrx/functions/Func2;
         8: .line 65
            invokespecial com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream.<init>:(Lcom/netflix/hystrix/HystrixThreadPoolKey;IILrx/functions/Func2;Lrx/functions/Func2;)V
         9: .line 64
            astore 6 /* newStream */
        start local 6 // com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream newStream
        10: .line 67
            getstatic com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream.streams:Ljava/util/concurrent/ConcurrentMap;
            aload 0 /* threadPoolKey */
            invokeinterface com.netflix.hystrix.HystrixThreadPoolKey.name:()Ljava/lang/String;
            aload 6 /* newStream */
            invokeinterface java.util.concurrent.ConcurrentMap.putIfAbsent:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        11: .line 68
            aload 6 /* newStream */
            aload 4
            monitorexit
        12: areturn
        end local 6 // com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream newStream
        13: .line 70
      StackMap locals: java.lang.Class com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream
      StackMap stack:
            aload 5 /* existingStream */
            aload 4
            monitorexit
        14: areturn
        end local 5 // com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream existingStream
        15: .line 61
      StackMap locals: com.netflix.hystrix.HystrixThreadPoolKey int int com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream java.lang.Class
      StackMap stack: java.lang.Throwable
            aload 4
            monitorexit
        16: athrow
        end local 3 // com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream initialStream
        end local 2 // int bucketSizeInMs
        end local 1 // int numBuckets
        end local 0 // com.netflix.hystrix.HystrixThreadPoolKey threadPoolKey
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   17     0   threadPoolKey  Lcom/netflix/hystrix/HystrixThreadPoolKey;
            0   17     1      numBuckets  I
            0   17     2  bucketSizeInMs  I
            1   17     3   initialStream  Lcom/netflix/hystrix/metric/consumer/RollingThreadPoolEventCounterStream;
            5   15     5  existingStream  Lcom/netflix/hystrix/metric/consumer/RollingThreadPoolEventCounterStream;
           10   13     6       newStream  Lcom/netflix/hystrix/metric/consumer/RollingThreadPoolEventCounterStream;
      Exception table:
        from    to  target  type
           4    12      15  any
          13    14      15  any
          15    16      15  any
    MethodParameters:
                Name  Flags
      threadPoolKey   
      numBuckets      
      bucketSizeInMs  

  public static void reset();
    descriptor: ()V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 77
            getstatic com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream.streams:Ljava/util/concurrent/ConcurrentMap;
            invokeinterface java.util.concurrent.ConcurrentMap.clear:()V
         1: .line 78
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void <init>(com.netflix.hystrix.HystrixThreadPoolKey, int, int, rx.functions.Func2<long[], com.netflix.hystrix.metric.HystrixCommandCompletion, long[]>, rx.functions.Func2<long[], long[], long[]>);
    descriptor: (Lcom/netflix/hystrix/HystrixThreadPoolKey;IILrx/functions/Func2;Lrx/functions/Func2;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=6, args_size=6
        start local 0 // com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream this
        start local 1 // com.netflix.hystrix.HystrixThreadPoolKey threadPoolKey
        start local 2 // int numCounterBuckets
        start local 3 // int counterBucketSizeInMs
        start local 4 // rx.functions.Func2 reduceCommandCompletion
        start local 5 // rx.functions.Func2 reduceBucket
         0: .line 83
            aload 0 /* this */
            aload 1 /* threadPoolKey */
            invokestatic com.netflix.hystrix.metric.HystrixThreadPoolCompletionStream.getInstance:(Lcom/netflix/hystrix/HystrixThreadPoolKey;)Lcom/netflix/hystrix/metric/HystrixThreadPoolCompletionStream;
            iload 2 /* numCounterBuckets */
            iload 3 /* counterBucketSizeInMs */
            aload 4 /* reduceCommandCompletion */
            aload 5 /* reduceBucket */
            invokespecial com.netflix.hystrix.metric.consumer.BucketedRollingCounterStream.<init>:(Lcom/netflix/hystrix/metric/HystrixEventStream;IILrx/functions/Func2;Lrx/functions/Func2;)V
         1: .line 84
            return
        end local 5 // rx.functions.Func2 reduceBucket
        end local 4 // rx.functions.Func2 reduceCommandCompletion
        end local 3 // int counterBucketSizeInMs
        end local 2 // int numCounterBuckets
        end local 1 // com.netflix.hystrix.HystrixThreadPoolKey threadPoolKey
        end local 0 // com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0    2     0                     this  Lcom/netflix/hystrix/metric/consumer/RollingThreadPoolEventCounterStream;
            0    2     1            threadPoolKey  Lcom/netflix/hystrix/HystrixThreadPoolKey;
            0    2     2        numCounterBuckets  I
            0    2     3    counterBucketSizeInMs  I
            0    2     4  reduceCommandCompletion  Lrx/functions/Func2<[JLcom/netflix/hystrix/metric/HystrixCommandCompletion;[J>;
            0    2     5             reduceBucket  Lrx/functions/Func2<[J[J[J>;
    Signature: (Lcom/netflix/hystrix/HystrixThreadPoolKey;IILrx/functions/Func2<[JLcom/netflix/hystrix/metric/HystrixCommandCompletion;[J>;Lrx/functions/Func2<[J[J[J>;)V
    MethodParameters:
                         Name  Flags
      threadPoolKey            
      numCounterBuckets        
      counterBucketSizeInMs    
      reduceCommandCompletion  
      reduceBucket             

  public long[] getEmptyBucketSummary();
    descriptor: ()[J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream this
         0: .line 88
            getstatic com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream.ALL_EVENT_TYPES_SIZE:I
            newarray 11
            areturn
        end local 0 // com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/hystrix/metric/consumer/RollingThreadPoolEventCounterStream;

  public long[] getEmptyOutputValue();
    descriptor: ()[J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream this
         0: .line 93
            getstatic com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream.ALL_EVENT_TYPES_SIZE:I
            newarray 11
            areturn
        end local 0 // com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/hystrix/metric/consumer/RollingThreadPoolEventCounterStream;

  public long getLatestCount(com.netflix.hystrix.HystrixEventType$ThreadPool);
    descriptor: (Lcom/netflix/hystrix/HystrixEventType$ThreadPool;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream this
        start local 1 // com.netflix.hystrix.HystrixEventType$ThreadPool eventType
         0: .line 97
            aload 0 /* this */
            invokevirtual com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream.getLatest:()Ljava/lang/Object;
            checkcast long[]
            aload 1 /* eventType */
            invokevirtual com.netflix.hystrix.HystrixEventType$ThreadPool.ordinal:()I
            laload
            lreturn
        end local 1 // com.netflix.hystrix.HystrixEventType$ThreadPool eventType
        end local 0 // com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lcom/netflix/hystrix/metric/consumer/RollingThreadPoolEventCounterStream;
            0    1     1  eventType  Lcom/netflix/hystrix/HystrixEventType$ThreadPool;
    MethodParameters:
           Name  Flags
      eventType  

  public java.lang.Object getEmptyOutputValue();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream.getEmptyOutputValue:()[J
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object getEmptyBucketSummary();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.netflix.hystrix.metric.consumer.RollingThreadPoolEventCounterStream.getEmptyBucketSummary:()[J
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Lcom/netflix/hystrix/metric/consumer/BucketedRollingCounterStream<Lcom/netflix/hystrix/metric/HystrixCommandCompletion;[J[J>;
SourceFile: "RollingThreadPoolEventCounterStream.java"
InnerClasses:
  public final ThreadPool = com.netflix.hystrix.HystrixEventType$ThreadPool of com.netflix.hystrix.HystrixEventType