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

org.kurento.client.RTCMediaStreamStats 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;

/**
 *
 * Statistics related to the media stream.
 *
 **/
@org.kurento.client.internal.ModuleName ("kurento")
public class RTCMediaStreamStats extends RTCStats {

/**
 *
 * Stream identifier.
 *
 **/
    private String streamIdentifier;
/**
 *
 * This is the id of the stats object, not the track.id.
 *
 **/
    private java.util.List trackIds;

/**
 *
 * Default private constructor of RTCMediaStreamStats for serialization with Jackson
 *
 **/
			protected RTCMediaStreamStats() {
				super();
			}

/**
 *
 * Create a RTCMediaStreamStats
 *
 **/
    public RTCMediaStreamStats(@org.kurento.client.internal.server.Param("id") String id, @org.kurento.client.internal.server.Param("type") org.kurento.client.StatsType type, @org.kurento.client.internal.server.Param("timestamp") double timestamp, @org.kurento.client.internal.server.Param("timestampMillis") long timestampMillis, @org.kurento.client.internal.server.Param("streamIdentifier") String streamIdentifier, @org.kurento.client.internal.server.Param("trackIds") java.util.List trackIds) {

	super(
id, 
type, 
timestamp, 
timestampMillis);

        this.streamIdentifier = streamIdentifier;
        this.trackIds = trackIds;
    }

/**
 *
 * get Stream identifier.
 *
 **/
    public String getStreamIdentifier(){
    	return streamIdentifier;
    }

/**
 *
 * set Stream identifier.
 *
 **/
    public void setStreamIdentifier(String streamIdentifier){
    	this.streamIdentifier = streamIdentifier;
    }

/**
 *
 * get This is the id of the stats object, not the track.id.
 *
 **/
    public java.util.List getTrackIds(){
    	return trackIds;
    }

/**
 *
 * set This is the id of the stats object, not the track.id.
 *
 **/
    public void setTrackIds(java.util.List trackIds){
    	this.trackIds = trackIds;
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy