org.kurento.client.ObjectCreatedEvent 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;
/**
*
* Indicates that an object has been created on the mediaserver
*
**/
public class ObjectCreatedEvent extends RaiseBaseEvent {
/**
*
* The object that has been created
*
**/
private org.kurento.client.MediaObject object;
/**
*
* Indicates that an object has been created on the mediaserver
*
* @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 object
* The object that has been created
*
**/
public ObjectCreatedEvent(@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("object") org.kurento.client.MediaObject object) {
super(source, timestamp, timestampMillis, tags);
this.object = object;
}
/**
*
* Getter for the object property
* @return The object that has been created *
**/
public org.kurento.client.MediaObject getObject() {
return object;
}
/**
*
* Setter for the object property
*
* @param object
* The object that has been created
*
**/
public void setObject(org.kurento.client.MediaObject object) {
this.object = object;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy