Uses of Interface
com.eatthepath.pushy.apns.ApnsPushNotification
Package
Description
Contains classes and interfaces for interacting with the Apple Push Notification service (APNs).
Contains classes and interfaces for working with mock APNs servers.
Contains classes for working with APNs tokens and payloads.
Contains application-specific interfaces for working with asynchronous push notification operations.
-
Uses of ApnsPushNotification in com.eatthepath.pushy.apns
Modifier and TypeInterfaceDescriptioninterface
PushNotificationResponse<T extends ApnsPushNotification>
A response from the APNs gateway indicating whether a notification was accepted or rejected.Modifier and TypeMethodDescription<T extends ApnsPushNotification>
PushNotificationFuture<T, PushNotificationResponse<T>> ApnsClient.sendNotification
(T notification) Sends a push notification to the APNs gateway. -
Uses of ApnsPushNotification in com.eatthepath.pushy.apns.server
Modifier and TypeMethodDescriptionabstract void
ParsingMockApnsServerListenerAdapter.handlePushNotificationAccepted
(ApnsPushNotification pushNotification) Handles a parsed push notification accepted by a mock server.abstract void
ParsingMockApnsServerListenerAdapter.handlePushNotificationRejected
(ApnsPushNotification pushNotification, RejectionReason rejectionReason, Instant deviceTokenExpirationTimestamp) Handles a parsed push notification accepted by a mock server. -
Uses of ApnsPushNotification in com.eatthepath.pushy.apns.util
Modifier and TypeClassDescriptionclass
A simple and immutable implementation of theApnsPushNotification
interface. -
Uses of ApnsPushNotification in com.eatthepath.pushy.apns.util.concurrent
Modifier and TypeClassDescriptionclass
PushNotificationFuture<P extends ApnsPushNotification,
V> A push notification future represents the result an asynchronous operation on aApnsPushNotification
.