Class Stats.RequestCount

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

public static class Stats.RequestCount
extends java.lang.Object
Contains the aggregate counts for requests made.
  • Field Summary

    Fields 
    Modifier and Type Field Description
    double failed
    The number of requests that failed.
    double refused
    The number of requests that were refused, typically as a result of permissions or a limit being exceeded.
    double succeeded
    The number of requests that succeeded.
  • Constructor Summary

    Constructors 
    Constructor Description
    RequestCount()  
  • Method Summary

    Methods inherited from class java.lang.Object

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

    • succeeded

      public double succeeded
      The number of requests that succeeded.

      Spec: TS8a

    • failed

      public double failed
      The number of requests that failed.

      Spec: TS8b

    • refused

      public double refused
      The number of requests that were refused, typically as a result of permissions or a limit being exceeded.

      Spec: TS8c

  • Constructor Details