You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: code/core/api/core.api
+20Lines changed: 20 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@ public abstract interface class com/adobe/marketing/mobile/AdobeCallbackWithErro
9
9
public class com/adobe/marketing/mobile/AdobeError : java/io/Serializable {
10
10
public static final field CALLBACK_NULL Lcom/adobe/marketing/mobile/AdobeError;
11
11
public static final field CALLBACK_TIMEOUT Lcom/adobe/marketing/mobile/AdobeError;
12
+
public static final field DATABASE_ERROR Lcom/adobe/marketing/mobile/AdobeError;
12
13
public static final field EXTENSION_NOT_INITIALIZED Lcom/adobe/marketing/mobile/AdobeError;
13
14
public static final field INVALID_REQUEST Lcom/adobe/marketing/mobile/AdobeError;
14
15
public static final field INVALID_RESPONSE Lcom/adobe/marketing/mobile/AdobeError;
@@ -56,6 +57,23 @@ public class com/adobe/marketing/mobile/EventHistoryRequest {
56
57
public fun getToDate ()J
57
58
}
58
59
60
+
public final class com/adobe/marketing/mobile/EventHistoryResult {
61
+
public static final field $stable I
62
+
public final field count I
63
+
public final field newestOccurrence Ljava/lang/Long;
64
+
public final field oldestOccurrence Ljava/lang/Long;
65
+
public fun <init> (ILjava/lang/Long;Ljava/lang/Long;)V
66
+
public synthetic fun <init> (ILjava/lang/Long;Ljava/lang/Long;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
67
+
public final fun component1 ()I
68
+
public final fun component2 ()Ljava/lang/Long;
69
+
public final fun component3 ()Ljava/lang/Long;
70
+
public final fun copy (ILjava/lang/Long;Ljava/lang/Long;)Lcom/adobe/marketing/mobile/EventHistoryResult;
71
+
public static synthetic fun copy$default (Lcom/adobe/marketing/mobile/EventHistoryResult;ILjava/lang/Long;Ljava/lang/Long;ILjava/lang/Object;)Lcom/adobe/marketing/mobile/EventHistoryResult;
72
+
public fun equals (Ljava/lang/Object;)Z
73
+
public fun hashCode ()I
74
+
public fun toString ()Ljava/lang/String;
75
+
}
76
+
59
77
public abstract interface class com/adobe/marketing/mobile/EventHistoryResultHandler {
60
78
public abstract fun call (Ljava/lang/Object;)V
61
79
}
@@ -138,9 +156,11 @@ public abstract class com/adobe/marketing/mobile/ExtensionApi {
138
156
public abstract fun createSharedState (Ljava/util/Map;Lcom/adobe/marketing/mobile/Event;)V
139
157
public abstract fun createXDMSharedState (Ljava/util/Map;Lcom/adobe/marketing/mobile/Event;)V
140
158
public abstract fun dispatch (Lcom/adobe/marketing/mobile/Event;)V
159
+
public abstract fun getHistoricalEvents ([Lcom/adobe/marketing/mobile/EventHistoryRequest;ZLcom/adobe/marketing/mobile/AdobeCallbackWithError;)V
141
160
public abstract fun getHistoricalEvents ([Lcom/adobe/marketing/mobile/EventHistoryRequest;ZLcom/adobe/marketing/mobile/EventHistoryResultHandler;)V
142
161
public abstract fun getSharedState (Ljava/lang/String;Lcom/adobe/marketing/mobile/Event;ZLcom/adobe/marketing/mobile/SharedStateResolution;)Lcom/adobe/marketing/mobile/SharedStateResult;
143
162
public abstract fun getXDMSharedState (Ljava/lang/String;Lcom/adobe/marketing/mobile/Event;ZLcom/adobe/marketing/mobile/SharedStateResolution;)Lcom/adobe/marketing/mobile/SharedStateResult;
163
+
public abstract fun recordHistoricalEvent (Lcom/adobe/marketing/mobile/Event;Lcom/adobe/marketing/mobile/AdobeCallbackWithError;)V
144
164
public abstract fun registerEventListener (Ljava/lang/String;Ljava/lang/String;Lcom/adobe/marketing/mobile/ExtensionEventListener;)V
Copy file name to clipboardExpand all lines: code/core/src/androidTest/java/com/adobe/marketing/mobile/internal/eventhub/history/AndroidEventHistoryDatabaseTests.kt
0 commit comments