Interface StompBrokerRelayMessageHandler.Stats

Enclosing class:
StompBrokerRelayMessageHandler

public static interface StompBrokerRelayMessageHandler.Stats
Contract for access to session counters.
Since:
5.2
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    The number of CONNECT frames processed.
    int
    The number of CONNECTED frames processed.
    int
    The number of DISCONNECT frames processed.
    int
    The number of connection handlers.
  • Method Details

    • getTotalHandlers

      int getTotalHandlers()
      The number of connection handlers.
    • getTotalConnect

      int getTotalConnect()
      The number of CONNECT frames processed.
    • getTotalConnected

      int getTotalConnected()
      The number of CONNECTED frames processed.
    • getTotalDisconnect

      int getTotalDisconnect()
      The number of DISCONNECT frames processed.