Class Stats.ResourceCount

java.lang.Object
io.ably.lib.types.Stats.ResourceCount
Enclosing class:
Stats

public static class Stats.ResourceCount
extends java.lang.Object
Contains the aggregate data for usage of a resource in a specific scope.
  • Field Summary

    Fields 
    Modifier and Type Field Description
    double mean
    The average number of resources of this type used for this period.
    double min
    The minimum total resources of this type used for this period.
    double opened
    The total number of resources opened of this type.
    double peak
    The peak number of resources of this type used for this period.
    double refused
    The number of resource requests refused within this period.
  • Constructor Summary

    Constructors 
    Constructor Description
    ResourceCount()  
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • opened

      public double opened
      The total number of resources opened of this type.

      Spec: TS9a

    • peak

      public double peak
      The peak number of resources of this type used for this period.

      Spec: TS9b

    • mean

      public double mean
      The average number of resources of this type used for this period.

      Spec: TS9c

    • min

      public double min
      The minimum total resources of this type used for this period.

      Spec: TS9d

    • refused

      public double refused
      The number of resource requests refused within this period.

      Spec: TS9e

  • Constructor Details