notnoop / java-apns

Java Apple Push Notification Service Provider
notnoop.github.com/java-apns
BSD 3-Clause "New" or "Revised" License
1.79k stars 656 forks source link

Is this project abandoned? #317

Open neilyoung opened 8 years ago

neilyoung commented 8 years ago

As subject says

mike-koch commented 8 years ago

Per README.md:

froh42 will return to develop for java-apns in October, so I expect the 1.0.0 final to be released start of November

petrdvorak commented 8 years ago

They don't say which October it will be (or was), though... ;-)

matzew commented 8 years ago

I'd recommend taking a look at pushy

On Tue, Oct 18, 2016 at 3:57 PM, Petr Dvořák notifications@github.com wrote:

They don't say which October it will be (or was), though... ;-)

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/notnoop/java-apns/issues/317#issuecomment-254515510, or mute the thread https://github.com/notifications/unsubscribe-auth/AAJnzo9SlvjFISev5Q1iJIxOm85_Glzrks5q1NBSgaJpZM4Jj29g .

Matthias Wessendorf

blog: http://matthiaswessendorf.wordpress.com/ twitter: http://twitter.com/mwessendorf

petrdvorak commented 8 years ago

I like pushy and so far, I am trying to make it work with my project - I am just little worried about running in container and about making it work with Spring Boot (I implement push server as an optional part of PowerAuth 2.0 and therefore, the technologies are given).

mike-koch commented 8 years ago

As @petrdvorak stated, Pushy has issues with being used in a container environment. I tried using it before switching to java-apns; however several times my Tomcat environment would not cleanly shut down due to Pushy hanging on to some resources that it wouldn't properly release.

matzew commented 8 years ago

I think the notes about Tomcat refer to the old arch of pushy, before HTTP/2 APIs usage (still Netty framework, though)

Since the underlying network stack is a different one, I think it's no longer relevant

On Tue, Oct 18, 2016 at 4:44 PM, Mike Koch notifications@github.com wrote:

As @petrdvorak https://github.com/petrdvorak stated, Pushy has issues with being used in a container environment. I tried using it before switching to java-apns; however several times my Tomcat environment would not cleanly shut down due to Pushy hanging on to some resources that it wouldn't properly release.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/notnoop/java-apns/issues/317#issuecomment-254530050, or mute the thread https://github.com/notifications/unsubscribe-auth/AAJnzrItCN4zvLioVTGRcdgQ6LIpvNhJks5q1Ns3gaJpZM4Jj29g .

Matthias Wessendorf

blog: http://matthiaswessendorf.wordpress.com/ twitter: http://twitter.com/mwessendorf

petrdvorak commented 8 years ago

I will have a look at pushy with Spring Boot in Tomcat and I will refer, hopefully this week.