Package org.robovm.apple.pushkit
Interface PKPushRegistryDelegate
- All Superinterfaces:
NSObjectProtocol,ObjCProtocol
- All Known Implementing Classes:
PKPushRegistryDelegateAdapter
public interface PKPushRegistryDelegate extends NSObjectProtocol
-
Method Summary
Modifier and Type Method Description voiddidInvalidatePushToken(PKPushRegistry registry, String type)voiddidReceiveIncomingPush(PKPushRegistry registry, PKPushPayload payload, String type)Deprecated.Deprecated in iOS 11.0.voiddidReceiveIncomingPushWithPayload(PKPushRegistry registry, PKPushPayload payload, String type, Runnable completion)voiddidUpdatePushCredentials(PKPushRegistry registry, PKPushCredentials pushCredentials, String type)
-
Method Details
-
didUpdatePushCredentials
void didUpdatePushCredentials(PKPushRegistry registry, PKPushCredentials pushCredentials, String type) -
didReceiveIncomingPush
@Deprecated void didReceiveIncomingPush(PKPushRegistry registry, PKPushPayload payload, String type)Deprecated.Deprecated in iOS 11.0. Use -pushRegistry:(PKPushRegistry *)registry didReceiveIncomingPushWithPayload:(PKPushPayload *)payload forType:(PKPushType)type withCompletionHandler:(void(^)(void))completion -
didReceiveIncomingPushWithPayload
void didReceiveIncomingPushWithPayload(PKPushRegistry registry, PKPushPayload payload, String type, Runnable completion)- Since:
- Available in iOS 11.0 and later.
-
didInvalidatePushToken
-