java-apns
java-apns copied to clipboard
Queueing vs. pooling
If I use queuing and pooling together:
APNS.newService() .asPool(...) .asQueued()
All of my notifications will be queued in a single background thread and only one of the connections from the pool will be used at a time. Is this intentional?