org.kurento.client.NewCandidatePairSelectedEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kurento-client Show documentation
Show all versions of kurento-client Show documentation
Kurento Client
The Kurento Client project allows server applications to control media server resources.
/**
* This file is generated with Kurento ktool-rom-processor.
* Please don't edit. Changes should go to kms-interface-rom and
* ktool-rom-processor templates.
*/
package org.kurento.client;
/**
*
* Event fired when a new pair of ICE candidates is used by the ICE library.
* This could also happen in the middle of a session, though not likely.
*
*
**/
public class NewCandidatePairSelectedEvent extends MediaEvent {
/**
*
* The new pair of candidates
*
**/
private org.kurento.client.IceCandidatePair candidatePair;
/**
*
* Event fired when a new pair of ICE candidates is used by the ICE library.
* This could also happen in the middle of a session, though not likely.
*
*
* @param source
* Object that raised the event
* @param timestamp
* [DEPRECATED: Use timestampMillis] The timestamp associated with this object: Seconds elapsed since the UNIX Epoch (Jan 1, 1970, UTC).
* @param timestampMillis
* The timestamp associated with this event: Milliseconds elapsed since the UNIX Epoch (Jan 1, 1970, UTC).
* @param tags
*
* @param type
* Type of event that was raised
* @param candidatePair
* The new pair of candidates
*
**/
public NewCandidatePairSelectedEvent(@org.kurento.client.internal.server.Param("source") org.kurento.client.MediaObject source, @org.kurento.client.internal.server.Param("timestamp") String timestamp, @org.kurento.client.internal.server.Param("timestampMillis") String timestampMillis, @org.kurento.client.internal.server.Param("tags") java.util.List tags, @org.kurento.client.internal.server.Param("type") String type, @org.kurento.client.internal.server.Param("candidatePair") org.kurento.client.IceCandidatePair candidatePair) {
super(source, timestamp, timestampMillis, tags, type);
this.candidatePair = candidatePair;
}
/**
*
* Getter for the candidatePair property
* @return The new pair of candidates *
**/
public org.kurento.client.IceCandidatePair getCandidatePair() {
return candidatePair;
}
/**
*
* Setter for the candidatePair property
*
* @param candidatePair
* The new pair of candidates
*
**/
public void setCandidatePair(org.kurento.client.IceCandidatePair candidatePair) {
this.candidatePair = candidatePair;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy