Reputation: 2025
I'm still at the level of experimenting with GAE and I was wondering if it's possible for GAE to somehow keep the socket open for indefinite period of time, or perhaps generate some kind of push messages. I want to write a desktop application that will communicate with the backend running on GAE and every once in a while display some notifications if some get generated by the backend, but I don't quite like the idea of polling the server every few seconds. Any ideas?
Upvotes: 0
Views: 82
Reputation: 80340
A few notes on existing APIs and why they would not work for a native desktop app:
Running server-to-client async push is not possible on normal GAE instances. There are however two practical approaches:
Upvotes: 1