Package com.unblu.livekitmodule
Class LiveKitModuleProvider
java.lang.Object
com.unblu.livekitmodule.LiveKitModuleProvider
Entry point to use the call functionality of Unblu to make audio and video calls with LiveKit.
The class is used to create a
CallModule
instance for Vonage and register it on the client configuration.
The returned API must be registered using UnbluClientConfiguration.Builder.registerModule(com.unblu.sdk.core.UnbluModule)
to enable its functionality.
If you're using Vonage as your call service provider, use CallModuleProvider instead.-
Method Summary
Modifier and TypeMethodDescriptionstatic CallModule
create()
Creates and returns a new instance ofCallModule
to make audio and video calls with LiveKit.static UnbluProvider
Creates and returns a new instance ofUnbluProvider
to make audio and video calls with LiveKit.static void
setLiveKitLogLevel
(io.livekit.android.util.LoggingLevel logLevel) Sets the LiveKit log level
-
Method Details
-
create
Creates and returns a new instance ofCallModule
to make audio and video calls with LiveKit.- Returns:
- A
CallModule
instance to use with LiveKit
-
createForDynamic
Creates and returns a new instance ofUnbluProvider
to make audio and video calls with LiveKit.This method is primarily intended for testing purposes. It allows you to switch between call service providers, provided you have multiple call service providers configured on the Collaboration Server. In most cases, you should use
create()
.- Returns:
- An
UnbluProvider
instance to use with LiveKit
-
setLiveKitLogLevel
public static void setLiveKitLogLevel(io.livekit.android.util.LoggingLevel logLevel) Sets the LiveKit log level- Parameters:
logLevel
- The log level to set for LiveKit. The available enum values are VERBOSE, INFO, DEBUG, WARN, ERROR, WTF, and OFF.
-