Uses of Interface
com.eatthepath.pushy.apns.ApnsPushNotification
Packages that use 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
Classes in com.eatthepath.pushy.apns with type parameters of type ApnsPushNotificationModifier and TypeInterfaceDescriptioninterfacePushNotificationResponse<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 ApnsPushNotificationModifier 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
Methods in com.eatthepath.pushy.apns.server with parameters of type ApnsPushNotificationModifier and TypeMethodDescriptionabstract 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 ApnsPushNotificationModifier and TypeClassDescriptionclassA 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 ApnsPushNotificationModifier and TypeClassDescriptionclassPushNotificationFuture<P extends ApnsPushNotification,V> A push notification future represents the result an asynchronous operation on aApnsPushNotification.