HubChannel
public enum HubChannel
extension HubChannel: Equatable
extension HubChannel: Hashable
HubChannel represents the channels on which Amplify category messages will be dispatched. Apps can define their own channels for intra-app communication. Internally, Amplify uses the Hub for dispatching notifications about events associated with different categories.
-
Declaration
Swift
case analytics -
Declaration
Swift
case api -
Declaration
Swift
case auth -
Declaration
Swift
case dataStore -
Declaration
Swift
case geo -
Declaration
Swift
case hub -
Declaration
Swift
case logging -
Declaration
Swift
case predictions -
Declaration
Swift
case pushNotifications -
Declaration
Swift
case storage -
Declaration
Swift
case custom(String) -
Declaration
Swift
public static func == (lhs: HubChannel, rhs: HubChannel) -> Bool -
Declaration
Swift
init(from categoryType: CategoryType)
View on GitHub