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

def.dom.MediaStreamTrack Maven / Gradle / Ivy

The newest version!
package def.dom;

import java.util.function.Consumer;

import def.js.Object;
import def.js.Promise;
import jsweet.lang.Interface;
import jsweet.lang.Name;
import jsweet.util.union.Union;

@Interface
public abstract class MediaStreamTrack {
	public boolean enabled;
	public final String id = null;
	public final boolean isolated = false;
	public final String kind = null;
	public final String label = null;
	public final boolean muted = false;
	@Name("final")
	public final boolean Final = false;
	public final String readyState = null;
	public final boolean remote = false;
	public Consumer onended;
	public Consumer onisolationchange;
	public Consumer onmute;
	public Consumer onoverconstrained;
	public Consumer onunmute;

	public native Promise applyConstraints(MediaTrackConstraints constraints);

	public native MediaStreamTrack clone();

	public native MediaTrackConstraints getConstraints();

	public native Object getSettings();

	public native void stop();

	public native void addEventListener(String type, Consumer listener,
			Union options);

	public native void removeEventListener(String type, EventListener listener,
			Union options);

	public native void removeEventListener(String type, EventListenerObject listener,
			Union options);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy