Class OutgoingVideoOptions
- Object
-
- OutgoingVideoOptions
-
public final class OutgoingVideoOptions extends Object
Hold properties that configure OutgoingVideoStreams
-
-
Constructor Summary
Constructors Constructor Description OutgoingVideoOptions()
Default constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
finalize()
Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.OutgoingVideoConstraints
getConstraints()
Get or set the OutgoingVideoConstraintsList<OutgoingVideoStream>
getStreams()
Get or set the OutgoingVideoStreams should start once the call startOutgoingVideoOptions
setConstraints(OutgoingVideoConstraints value)
Get or set the OutgoingVideoConstraintsOutgoingVideoOptions
setOutgoingVideoStreams(Iterable<OutgoingVideoStream> outgoingVideoStreams)
Set outgoing video streams for the call.
-
-
-
Method Detail
-
finalize
protected void finalize()
Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.- Overrides:
finalize
in classObject
-
getStreams
public List<OutgoingVideoStream> getStreams()
Get or set the OutgoingVideoStreams should start once the call start
-
getConstraints
public OutgoingVideoConstraints getConstraints()
Get or set the OutgoingVideoConstraints
-
setConstraints
public OutgoingVideoOptions setConstraints(OutgoingVideoConstraints value)
Get or set the OutgoingVideoConstraints- Parameters:
value
- The new value.
-
setOutgoingVideoStreams
public OutgoingVideoOptions setOutgoingVideoStreams(Iterable<OutgoingVideoStream> outgoingVideoStreams)
Set outgoing video streams for the call.- Parameters:
outgoingVideoStreams
- List of outgoing video streams.
-
-