Package 

Class CallCompositeLocalOptions


  • 
    public final class CallCompositeLocalOptions
    
                        

    CallCompositeLocalOptions for launch.

    Local Options for the Call Composite. These options are not shared with the server and impact local views only. E.g. The Local Participant Name if it differs from the display name you'd like to share with the server.

    
    // Initialize the call composite builder
    final CallCompositeBuilder builder = new CallCompositeBuilder();
    
    // Build the call composite
    CallComposite callComposite = builder.build();
    
    // Build the CallCompositeLocalOptions with CallCompositeParticipantViewData
    CallCompositeLocalOptions localOptions = new CallCompositeLocalOptions(
        new CallCompositeParticipantViewData(...));
    
    // Launch call
    callComposite.launch(.., .., localOptions)