Uses of Interface
com.eatthepath.pushy.apns.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 interfacePushNotificationResponse<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 voidParsingMockApnsServerListenerAdapter. handlePushNotificationAccepted(ApnsPushNotification pushNotification)Handles a parsed push notification accepted by a mock server.abstract voidParsingMockApnsServerListenerAdapter. 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
Classes in com.eatthepath.pushy.apns.util that implement ApnsPushNotification Modifier and Type Class Description classSimpleApnsPushNotificationA simple and immutable implementation of theApnsPushNotificationinterface. -
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 Class Description classPushNotificationFuture<P extends ApnsPushNotification,V>A push notification future represents the result an asynchronous operation on aApnsPushNotification.