Uses of Interface
com.notnoop.apns.ApnsNotification

Packages that use ApnsNotification
com.notnoop.apns   
com.notnoop.apns.internal   
 

Uses of ApnsNotification in com.notnoop.apns
 

Classes in com.notnoop.apns that implement ApnsNotification
 class EnhancedApnsNotification
          Represents an APNS notification to be sent to Apple service.
 class SimpleApnsNotification
          Represents an APNS notification to be sent to Apple service.
 

Methods in com.notnoop.apns that return ApnsNotification
 ApnsNotification ApnsService.push(byte[] deviceToken, byte[] payload)
          Sends a push notification with the provided payload to the iPhone of deviceToken.
 ApnsNotification ApnsService.push(String deviceToken, String payload)
          Sends a push notification with the provided payload to the iPhone of deviceToken.
 

Methods in com.notnoop.apns that return types with arguments of type ApnsNotification
 Collection<? extends ApnsNotification> ApnsService.push(Collection<byte[]> deviceTokens, byte[] payload)
          Sends a bulk push notification with the provided payload to iPhone of deviceTokens set.
 Collection<? extends ApnsNotification> ApnsService.push(Collection<String> deviceTokens, String payload)
          Sends a bulk push notification with the provided payload to iPhone of deviceTokens set.
 

Methods in com.notnoop.apns with parameters of type ApnsNotification
 void ApnsDelegateAdapter.messageSendFailed(ApnsNotification message, Throwable e)
           
 void ApnsDelegate.messageSendFailed(ApnsNotification message, Throwable e)
          Called when the delivery of the message failed for any reason If message is null, then your notification has been rejected by Apple but it has been removed from the cache so it is not possible to identify which notification caused the error.
 void ApnsDelegateAdapter.messageSent(ApnsNotification message, boolean resent)
           
 void ApnsDelegate.messageSent(ApnsNotification message, boolean resent)
          Called when message was successfully sent to the Apple servers
 void ApnsService.push(ApnsNotification message)
          Sends the provided notification message to the desired destination.
 

Uses of ApnsNotification in com.notnoop.apns.internal
 

Methods in com.notnoop.apns.internal with parameters of type ApnsNotification
 void QueuedApnsService.push(ApnsNotification msg)
           
 void BatchApnsService.push(ApnsNotification message)
           
 void ApnsServiceImpl.push(ApnsNotification msg)
           
 void ApnsPooledConnection.sendMessage(ApnsNotification m)
           
 void ApnsConnectionImpl.sendMessage(ApnsNotification m)
           
 void ApnsConnection.sendMessage(ApnsNotification m)
           
 void ApnsConnectionImpl.sendMessage(ApnsNotification m, boolean fromBuffer)
           
 



Copyright © 2013. All Rights Reserved.