Class Stats.ResourceCount

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

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

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

    Constructors
    Constructor
    Description
     
  • 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

    • ResourceCount

      public ResourceCount()