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

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