Class ConnectionStateChangedEvent

  • All Implemented Interfaces:
    Event

    public class ConnectionStateChangedEvent
    extends MediaEvent
    This event is raised when the connection between two peers changes. It contains the old and the new state. Possible values are
    • CONNECTED
    • DISCONNECTED
    • Constructor Detail

      • ConnectionStateChangedEvent

        public ConnectionStateChangedEvent​(MediaObject source,
                                           String timestampMillis,
                                           List<Tag> tags,
                                           String type,
                                           ConnectionState oldState,
                                           ConnectionState newState)
        This event is raised when the connection between two peers changes. It contains the old and the new state. Possible values are
        • CONNECTED
        • DISCONNECTED
        Parameters:
        source - Object that raised the event
        timestampMillis - The timestamp associated with this event: Milliseconds elapsed since the UNIX Epoch (Jan 1, 1970, UTC).
        tags -
        type - Type of event that was raised
        oldState - The previous state
        newState - The new state
    • Method Detail

      • getOldState

        public ConnectionState getOldState()
        Getter for the oldState property
        Returns:
        The previous state *
      • setOldState

        public void setOldState​(ConnectionState oldState)
        Setter for the oldState property
        Parameters:
        oldState - The previous state
      • getNewState

        public ConnectionState getNewState()
        Getter for the newState property
        Returns:
        The new state *
      • setNewState

        public void setNewState​(ConnectionState newState)
        Setter for the newState property
        Parameters:
        newState - The new state