vote up 20 vote down star
14

I'm sure Wave doesn't poll the server every millisecond to find out if the other user has typed something... so how can I see what the other person is typing as they type? And without hogging the bandwidth.

flag

There is some information in one of the answers here stackoverflow.com/questions/928744/… – Goog Jun 17 at 18:07

8 Answers

vote up 27 vote down check

Persistent HTTP, Comet

Keep your HTTP connection alive and send characters as they are typed

link|flag
Does it really use Comet bcoz it use GWT? – Rahul Garg Jul 21 at 11:04
comet is a buzzword, it's not any defined framework or technology. you can implement it with gwt, without gwt, and however you like – Yoni Roit Jul 21 at 16:16
vote up 6 vote down

They probably use Web Sockets, aka server-sent events: http://www.w3.org/TR/websockets The underlying protocol can be found (as a draft) at the IETF.

Update: it doesn't seem WebSockets has any implementation yet; and a video from Google I/O (go to 11:00) talks about a long lived HTTP GET request.

link|flag
Didn't know there was a restriction like that for users! I'll vote you up to give you some more rep. – Rich Bradshaw Jun 3 at 9:10
Thanks for your vote, I've now edited my answer to include "more than one hyperlink", and thus actually link to the IETF draft. – Thomas Broyer Jun 5 at 1:11
vote up 1 vote down

Pure speculation but could it be using the Server Side DOM events from the HTML 5 spec?

link|flag
vote up 1 vote down

See Video Google Wave: Powered by GWT around at minute 55 (near the end)

Q: How you implement the persistent Connections, the long living http connections

A: Future Plan: HTML5 Web Sockets. Longer term. That's what we use at the moment.

Q: Is there a platform or library for this we can download and play with?

A: Not sure. Don't think so

P.S.: That's what he said. To me it did not make much sense ("future plans" vs "using at the moment"). Any native english speaker might want to verify if I transcribed it correctly?

link|flag
1  
It's confusing because it's slightly out of context. The answer meant basically: Yes, we're using hanging requests (aka "Comet"). The future plan is to move to WebSockets when implementations are available. – Mark Renouf Jun 17 at 20:35
the link is a 404 – tom greene Oct 12 at 21:35
vote up 1 vote down

Server Push in GWT

Server push is the Wait, Respond, Close, Re-Open paradigm:

  • Wait: When the GWT code makes a call to your server for some data that you don't have yet, freeze (wait)

  • Respond: Once the requested data is
    available, respond with it

  • Close: Then, close the connection.

  • Re-Open: Once your GWT code receives the response, immediately open up a new connection to query for the next event.

link|flag
vote up 0 vote down

Probably comet for now websocket in the future. Because it works in Firefox 3.5 and from what I've read the websocket is only available in the nightly builds of FF... I could be wrong though... as it appears to not work in IE at all.

link|flag
vote up 0 vote down

I would assume that they use ajax requests. Do an XMLHttpRequest, which is asynchronous, and when the server has something to send your browser the javascript callback that was registered gets the data and does whatever with it. So basically the browser requests the next event, handles it, repeats indefinitely.

link|flag
vote up 0 vote down

the entire reason for WebSockets is to have the browser keep a bi-directional socket open to a server so that real time communications can be used. When someone types on the other end, in a wave client, it triggers an event that is sent to the server and the server in turn looks to see who should also receive the event and pass them the event, in this case the typed letter.

WebSocket and Comet are different.

Granville

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.