Package org.kurento.client
Class ConnectionStateChangedEvent
java.lang.Object
org.kurento.client.RaiseBaseEvent
org.kurento.client.MediaEvent
org.kurento.client.ConnectionStateChangedEvent
- All Implemented Interfaces:
Event
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 Summary
ConstructorsConstructorDescriptionConnectionStateChangedEvent
(MediaObject source, String timestampMillis, List<Tag> tags, String type, ConnectionState oldState, ConnectionState newState) This event is raised when the connection between two peers changes. -
Method Summary
Modifier and TypeMethodDescriptionGetter for the newState propertyGetter for the oldState propertyvoid
setNewState
(ConnectionState newState) Setter for the newState propertyvoid
setOldState
(ConnectionState oldState) Setter for the oldState propertyMethods inherited from class org.kurento.client.MediaEvent
getType, setType
Methods inherited from class org.kurento.client.RaiseBaseEvent
getSource, getTags, getTimestampMillis, setSource, setTags, setTimestampMillis
-
Constructor Details
-
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 eventtimestampMillis
- The timestamp associated with this event: Milliseconds elapsed since the UNIX Epoch (Jan 1, 1970, UTC).tags
-type
- Type of event that was raisedoldState
- The previous statenewState
- The new state
-
-
Method Details
-
getOldState
Getter for the oldState property- Returns:
- The previous state *
-
setOldState
Setter for the oldState property- Parameters:
oldState
- The previous state
-
getNewState
Getter for the newState property- Returns:
- The new state *
-
setNewState
Setter for the newState property- Parameters:
newState
- The new state
-