Code Monkey home page Code Monkey logo

Comments (6)

jchambers avatar jchambers commented on May 25, 2024

…it would be better to shut it down when the notifications queue is empty and restart it when a new notification needs to be sent.

Actually, Apple's docs suggest keeping the connection open even when you're not using it:

Keep your connections with APNs open across multiple notifications; don’t repeatedly open and close connections. APNs treats rapid connection and disconnection as a denial-of-service attack. You should leave a connection open unless you know it will be idle for an extended period of time—for example, if you only send notifications to your users once a day it is ok to use a new connection each day.

You're right, though, that there isn't currently a way to know when all notifications have been sent. Generally, our expectation has been that the connection will be open for a long time and shutdown timing won't be a high-precision affair (i.e. you'll be doing it as part of a larger application shutdown). The README is a bit confusing in that regard, though; you're right that it makes it sound like we're encouraging you to shut down the PushManager whenever the queue is empty, and I'll fix that shortly.

Could you tell us a bit more about your use case? Is this a thing where we're just setting expectations poorly in the README, or do you have some functional need that's not being met by the design of the library itself?

from pushy.

Raibaz avatar Raibaz commented on May 25, 2024

I guess I was just confused by the README, what you say about keeping the connection open makes perfect sense.

Anyway, IMHO having some methods to query the state of the pushManager and the notifications queue may come in handy, I'll try forking and implementing them later on.

from pushy.

jchambers avatar jchambers commented on May 25, 2024

Anyway, IMHO having some methods to query the state of the pushManager and the notifications queue may come in handy, I'll try forking and implementing them later on.

Fair enough. I'll also take a whack at it. It's a little tricky since we're doing asynchronous network IO, though; to check on "done"-ness, we'd need to wait for all network writes to finish, and then make sure we don't have a reply from the APNs gateway. Should be doable, but I suspect it will be non-trivial.

I'll certainly update the README, too. Cheers!

from pushy.

jchambers avatar jchambers commented on May 25, 2024

Made the README/site changes in 80ed150 and 00e27c6.

I've been thinking a lot about how to reflect queue state. We can't know even when a message has been sent by the underlying transport, so our options are pretty limited (just checking whether the queue is empty doesn't tell us much because sent messages might get re-enqueued after an exception).

The only way we could really get affirmative confirmation that messages have been sent (and thus have a meaningful sense of queue state) would be to send a deliberately bogus message to the APNs gateway; when the gateway rejects the known-bad message, we'll know that everything prior to that message was handled successfully. I'll explore that in more detail and see if it passes the crazy test.

from pushy.

jchambers avatar jchambers commented on May 25, 2024

The only way we could really get affirmative confirmation that messages have been sent (and thus have a meaningful sense of queue state) would be to send a deliberately bogus message to the APNs gateway; when the gateway rejects the known-bad message, we'll know that everything prior to that message was handled successfully.

I've opened #4 to shut down with a known-bad notification.

from pushy.

jchambers avatar jchambers commented on May 25, 2024

We've merged #4, which I think closes the book on fuzzy shutdown timing.

from pushy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.