[google-appengine] Re: Channel API future improvements?

2011-02-03 Thread mcilrain
I don't see what the issue is, an abstraction layer will add most of that functionality. 1. The Matcher API could be very useful for this one. 2. Code the client to send heartbeats back to the server, use cron to periodically handle any dead connections. 4. Abstraction will solve this -- You

[google-appengine] Re: Channel API future improvements?

2011-02-03 Thread Flori
+1 for the channel presence. This is not really a feature, rather a lack of "basic" functionality (in my opinion). On Feb 3, 7:36 pm, Peter Petrov wrote: > Today there was a GAE SDK 1.4.2 > prerelease. > I was quite disappointed that it ha

[google-appengine] Re: Channel API future improvements?

2011-02-03 Thread ajaxer
+1 -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appengine@googlegroups.com. To unsubscribe from this group, send email to google-appengine+unsubscr...@googlegroups.com. For more options, visit

[google-appengine] Re: Channel API future improvements?

2011-02-04 Thread Backpack
Ikai, I have a question for you: Why GAE doesn't allow us to connect directly to google talk using web sockets? That would solve all of our problems in one shot and more. Then use XMPP bots (already available in GAE) to interact with IMs. That was my proposal since day one a couple of years ago wh

[google-appengine] Re: Channel API future improvements?

2011-02-07 Thread Tim
I've starred #4506 and #4507, but if Moishe is reading, I have a request for a change for the Channel API as implemented by the Dev server (ie the SDK)... it currently polls once a second, and when I'm trying to watch and count my AJAX calls (say the Networks tab in Chrome Developer Tools) then

[google-appengine] Re: Channel API future improvements?

2011-03-05 Thread Westmark
Is there any way for the client to terminate the connection while running on the development server? I've tried calling close() and every other function I can find on the socket and client javascript object, but it keeps polling forever. I want to be able to kill it off so I can setup a new connect

[google-appengine] Re: Channel API future improvements?

2012-07-17 Thread Kristopher Giesing
This is logged here: http://code.google.com/p/googleappengine/issues/detail?id=7098 I patched the 1.7 channel API locally to deal with it; see the issue comments. On Saturday, March 5, 2011 8:02:23 AM UTC-8, Westmark wrote: > > Is there any way for the client to terminate the connection while

Re: [google-appengine] Re: Channel API future improvements?

2011-02-03 Thread Peter Petrov
On Thu, Feb 3, 2011 at 10:14 PM, mcilrain wrote: > I don't see what the issue is, an abstraction layer will add most of that > functionality. > > 1. The Matcher API could be very useful for this one. > > It is not useful at all. The Matcher API will simply fire a bunch of tasks for me. I already

Re: [google-appengine] Re: Channel API future improvements?

2011-02-07 Thread Peter Petrov
On Mon, Feb 7, 2011 at 6:02 PM, Tim wrote: > > I've starred #4506 and #4507, but if Moishe is reading, I have a request > for a change for the Channel API as implemented by the Dev server (ie the > SDK)... it currently polls once a second, and when I'm trying to watch and > count my AJAX calls (s

Re: [google-appengine] Re: Channel API future improvements?

2011-02-07 Thread Tim
On Monday, February 7, 2011 5:05:06 PM UTC, Peter Petrov wrote: > > You can change the dev-server polling interval in your JavaScript code > quite easily. For example: > > goog.appengine.Socket.POLLING_TIMEOUT_MS = 5000; // 5 seconds > Ah, so you can... and here was me looking for ways to get h