-
- All Implemented Interfaces:
public interface MessagingFactory
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classMessagingFactory.CreateParamsParams needed by the MessagingFactory to create an instance of Messaging.
-
Method Summary
Modifier and Type Method Description abstract Messagingcreate(MessagingFactory.CreateParams params)Creates a new instance of Messaging. abstract UserColorsgetUserLightColors()Encapsulates the light colors provided by the user to be used in the SDK theme. abstract UserColorsgetUserDarkColors()Encapsulates the dark colors provided by the user to be used in the SDK theme. -
-
Method Detail
-
create
abstract Messaging create(MessagingFactory.CreateParams params)
Creates a new instance of Messaging.
- Parameters:
params- All the parameters needed by this factory to create a Messaging
-
getUserLightColors
abstract UserColors getUserLightColors()
Encapsulates the light colors provided by the user to be used in the SDK theme.
-
getUserDarkColors
abstract UserColors getUserDarkColors()
Encapsulates the dark colors provided by the user to be used in the SDK theme.
-
-
-
-