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
  • api

    Declaration

    Swift

    case api
  • Declaration

    Swift

    case auth
  • Declaration

    Swift

    case dataStore
  • geo

    Declaration

    Swift

    case geo
  • hub

    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

    public init(from categoryType: CategoryType)