-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pull request #474: mtokar-MCA-4193_contextual_data_new_strategy
Merge in MML/infobip-mobile-messaging-android from mtokar-MCA-4193_contextual_data_new_strategy to master Squashed commit of the following: commit 96c3470c87f177006daff8c9a640c397286fc89a Author: Matus Tokar <[email protected]> Date: Wed Dec 18 12:32:34 2024 +0100 review fixes commit 108a6ff51e9e024cab318a1e79c602e6923fc0ac Author: Matus Tokar <[email protected]> Date: Sun Dec 15 17:40:10 2024 +0100 new context data strategy
- Loading branch information
Matuš Tokar
authored and
Matuš Tokar
committed
Dec 19, 2024
1 parent
dc58316
commit 9672270
Showing
8 changed files
with
120 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
...g/chat/core/InAppChatMultiThreadFlag.java → ...saging/chat/core/MultithreadStrategy.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
package org.infobip.mobile.messaging.chat.core; | ||
|
||
public enum InAppChatMultiThreadFlag { | ||
public enum MultithreadStrategy { | ||
ACTIVE, | ||
ALL | ||
ALL, | ||
ALL_PLUS_NEW | ||
} |
4 changes: 3 additions & 1 deletion
4
...android-chat-sdk/src/main/java/org/infobip/mobile/messaging/chat/models/ContextualData.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
package org.infobip.mobile.messaging.chat.models | ||
|
||
import org.infobip.mobile.messaging.chat.core.MultithreadStrategy | ||
|
||
internal data class ContextualData( | ||
val data: String, | ||
val allMultiThreadStrategy: Boolean | ||
val allMultiThreadStrategy: MultithreadStrategy | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters