Uses of Interface
com.eatthepath.pushy.apns.ApnsPushNotification
-
Packages that use ApnsPushNotification Package Description com.eatthepath.pushy.apns Contains classes and interfaces for interacting with the Apple Push Notification service (APNs).com.eatthepath.pushy.apns.server Contains classes and interfaces for working with mock APNs servers.com.eatthepath.pushy.apns.util Contains classes for working with APNs tokens and payloads.com.eatthepath.pushy.apns.util.concurrent Contains application-specific interfaces for working with asynchronous push notification operations. -
-
Uses of ApnsPushNotification in com.eatthepath.pushy.apns
Classes in com.eatthepath.pushy.apns with type parameters of type ApnsPushNotification Modifier and Type Interface Description interface
PushNotificationResponse<T extends ApnsPushNotification>
A response from the APNs gateway indicating whether a notification was accepted or rejected.Methods in com.eatthepath.pushy.apns with type parameters of type ApnsPushNotification Modifier and Type Method Description <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
Methods in com.eatthepath.pushy.apns.server with parameters of type ApnsPushNotification Modifier and Type Method Description abstract void
ParsingMockApnsServerListenerAdapter. handlePushNotificationAccepted(ApnsPushNotification pushNotification)
Handles a parsed push notification accepted by a mock server.abstract void
ParsingMockApnsServerListenerAdapter. handlePushNotificationRejected(ApnsPushNotification pushNotification, RejectionReason rejectionReason, Date deviceTokenExpirationTimestamp)
Handles a parsed push notification accepted by a mock server. -
Uses of ApnsPushNotification in com.eatthepath.pushy.apns.util
Classes in com.eatthepath.pushy.apns.util that implement ApnsPushNotification Modifier and Type Class Description class
SimpleApnsPushNotification
A simple and immutable implementation of theApnsPushNotification
interface. -
Uses of ApnsPushNotification in com.eatthepath.pushy.apns.util.concurrent
Classes in com.eatthepath.pushy.apns.util.concurrent with type parameters of type ApnsPushNotification Modifier and Type Interface Description interface
PushNotificationFuture<P extends ApnsPushNotification,V>
A push notification future represents the result an operation on a push notification.interface
PushNotificationResponseListener<T extends ApnsPushNotification>
A type-specific convenience interface for listening for the result of an attempt to send a push notification.
-