All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kurento.client.IceCandidateFoundEvent Maven / Gradle / Ivy

Go to download

Kurento Client The Kurento Client project allows server applications to control media server resources.

There is a newer version: 7.1.0
Show newest version
/**
 * 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;


/**
 *
 * Notifies a new local candidate. These candidates should be sent to the remote peer, to complete the ICE negotiation process.
 *
 **/
public class IceCandidateFoundEvent extends MediaEvent {

/**
 *
 * New local candidate
 *
 **/
	private org.kurento.client.IceCandidate candidate;

/**
 *
 * Notifies a new local candidate. These candidates should be sent to the remote peer, to complete the ICE negotiation process.
 *
 * @param source
 *       Object that raised the event
 * @param timestamp
 *       
 * @param tags
 *       
 * @param type
 *       Type of event that was raised
 * @param candidate
 *       New local candidate
 *
 **/
  public IceCandidateFoundEvent(@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("tags") java.util.List tags, @org.kurento.client.internal.server.Param("type") String type, @org.kurento.client.internal.server.Param("candidate") org.kurento.client.IceCandidate candidate) {
    super(source, timestamp, tags, type);
    this.candidate = candidate;
  }

/**
 *
 * Getter for the candidate property
 * @return New local candidate *
 **/
	public org.kurento.client.IceCandidate getCandidate() {
		return candidate;
	}

/**
 *
 * Setter for the candidate property
 *
 * @param candidate
 *       New local candidate
 *
 **/
	public void setCandidate(org.kurento.client.IceCandidate candidate) {
		this.candidate = candidate;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy