Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

new error type, event type, event source #455

Merged
merged 1 commit into from
Nov 19, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions AEPCore/Sources/eventhub/AEPError.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,9 @@ import Foundation
case callbackTimeout = 1
case callbackNil = 2
case none = 3
case serverError = 4
case networkError = 5
case invalidRequest = 6
case invalidResponse = 7
case errorExtensionNotInitialized = 11
}
1 change: 1 addition & 0 deletions AEPCore/Sources/eventhub/EventSource.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,6 @@ public class EventSource: NSObject {
public static let responseIdentity = "com.adobe.eventSource.responseIdentity"
public static let responseProfile = "com.adobe.eventSource.responseProfile"
public static let sharedState = "com.adobe.eventSource.sharedState"
public static let notification = "com.adobe.eventSource.notification"
public static let wildcard = "com.adobe.eventSource._wildcard_"
}
1 change: 1 addition & 0 deletions AEPCore/Sources/eventhub/EventType.swift
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,6 @@ public class EventType: NSObject {
public static let genericIdentity = "com.adobe.eventType.generic.identity"
public static let genericPii = "com.adobe.eventType.generic.pii"
public static let genericData = "com.adobe.eventType.generic.data"
public static let edge = "com.adobe.eventType.edge"
public static let wildcard = "com.adobe.eventType._wildcard_"
}