Documentation
¶
Index ¶
- Variables
- func New(router router.Router, sender connector.Sender, config Config, ...) (connector.ResponsiveConnector, error)
- func NewSender(config Config) (connector.Sender, error)
- func NewSenderUsingPusher(pusher Pusher, appTopic string) (connector.Sender, error)
- type ApnsEvent
- type Aps
- type Config
- type Payload
- type Pusher
Constants ¶
This section is empty.
Variables ¶
View Source
var (
ErrRetryFailed = errors.New("Retry failed")
)
Functions ¶
Types ¶
type ApnsEvent ¶
type ApnsEvent struct { ID string `json:"id"` Time string `json:"time"` Type string `json:"type"` Payload kafka.PushEventPayload `json:"payload"` }
type Aps ¶
type Aps struct { Alert interface{} `json:"alert,omitempty"` Badge interface{} `json:"badge,omitempty"` Category string `json:"category,omitempty"` ContentAvailable int `json:"content-available,omitempty"` MutableContent int `json:"mutable-content,omitempty"` Sound string `json:"sound,omitempty"` ThreadID string `json:"thread-id,omitempty"` URLArgs []string `json:"url-args,omitempty"` }
type Config ¶
type Config struct { Enabled *bool Production *bool CertificateFileName *string CertificateBytes *[]byte CertificatePassword *string AppTopic *string Workers *int Prefix *string IntervalMetrics *bool }
Config is used for configuring the APNS module.
Click to show internal directories.
Click to hide internal directories.