org.kurento.client.GenericMediaEvent 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.
package org.kurento.client;
import org.kurento.jsonrpc.Props;
public class GenericMediaEvent extends MediaEvent {
Props data;
public GenericMediaEvent(@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("genericData") Props data) {
super(source, timestamp, timestampMillis, tags, type);
this.data = data;
}
public Props getData() {
return this.data;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy