Class OutgoingVideoOptions
- Object
-
- OutgoingVideoOptions
-
public final class OutgoingVideoOptions extends ObjectHold 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 voidfinalize()Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.OutgoingVideoConstraintsgetConstraints()Get or set the OutgoingVideoConstraintsList<OutgoingVideoStream>getStreams()Get or set the OutgoingVideoStreams should start once the call startOutgoingVideoOptionssetConstraints(OutgoingVideoConstraints value)Get or set the OutgoingVideoConstraintsOutgoingVideoOptionssetOutgoingVideoStreams(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:
finalizein 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.
-
-