Class Stats.PushedMessages

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

public static class Stats.PushedMessages
extends java.lang.Object
Details the stats on push notifications.
  • Field Summary

    Fields 
    Modifier and Type Field Description
    int directPublishes
    Total number of direct publishes.
    int messages
    Total number of push messages.
    java.util.Map<java.lang.String,​java.lang.Integer> notifications
    The count of push notifications.
  • Constructor Summary

    Constructors 
    Constructor Description
    PushedMessages()  
  • Method Summary

    Methods inherited from class java.lang.Object

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

    • messages

      public int messages
      Total number of push messages.

      Spec: TS10a

    • notifications

      public java.util.Map<java.lang.String,​java.lang.Integer> notifications
      The count of push notifications.

      Spec: TS10c

    • directPublishes

      public int directPublishes
      Total number of direct publishes.

      Spec: TS10b

  • Constructor Details