org.kurento.client.MediaEvent 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;
/**
*
* Base for all events raised by elements in the Kurento media server.
*
**/
public class MediaEvent extends RaiseBaseEvent {
/**
*
* Type of event that was raised
*
**/
private String type;
/**
*
* Base for all events raised by elements in the Kurento media server.
*
* @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
*
**/
public MediaEvent(@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) {
super(source, timestamp, timestampMillis, tags);
this.type = type;
}
/**
*
* Getter for the type property
* @return Type of event that was raised *
**/
public String getType() {
return type;
}
/**
*
* Setter for the type property
*
* @param type
* Type of event that was raised
*
**/
public void setType(String type) {
this.type = type;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy