org.kurento.client.Composite 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-maven-plugin.
* Please don't edit.
*/
package org.kurento.client;
/**
*
* A {@link module:core/abstracts.Hub Hub} that mixes the {@link #MediaType.AUDIO} stream of its connected sources and constructs a grid with the {@link #MediaType.VIDEO} streams of its connected sources into its sink
*
**/
@org.kurento.client.internal.RemoteClass
public interface Composite extends Hub {
public class Builder extends AbstractBuilder {
/**
*
* Creates a Builder for Composite
*
**/
public Builder(org.kurento.client.MediaPipeline mediaPipeline){
super(Composite.class,mediaPipeline);
props.add("mediaPipeline",mediaPipeline);
}
public Builder withProperties(Properties properties) {
return (Builder)super.withProperties(properties);
}
public Builder with(String name, Object value) {
return (Builder)super.with(name, value);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy