-
- All Implemented Interfaces:
public interface MessagingFactory
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
MessagingFactory.CreateParams
Params needed by the MessagingFactory to create an instance of Messaging.
-
Method Summary
Modifier and Type Method Description abstract Messaging
create(MessagingFactory.CreateParams params)
Creates a new instance of Messaging. abstract UserColors
getUserLightColors()
Encapsulates the light colors provided by the user to be used in the SDK theme. abstract UserColors
getUserDarkColors()
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.
-
-
-
-