Suppose I have 3 notifications for sending - a
, b
and c
- but there is a problem with notification b
. Suppose this is an invalid token. If I do the following:
- Create buffer
- Add a, b and c to the buffer
- Send buffer to APNS server
Will message c
be sent?
Apple documentation states:
If you send a notification and the APN detects that the notification is garbled or otherwise unclear, it will return a packet with an error message before disconnecting.
Does this mean that I will get an error about b
and the connection will be disconnected and therefore c
will never be sent?
source share