Skip to content

Instantly share code, notes, and snippets.

@kamito
Created January 23, 2011 13:56
Show Gist options
  • Save kamito/792093 to your computer and use it in GitHub Desktop.
Save kamito/792093 to your computer and use it in GitHub Desktop.
// チェンネルインスタンスを生成
var channel = new goog.appengine.Channel(window.channel_token);
// チェンネルをオープン
var socket = this.channel.open();
// 各コールバック関数をセット
socket.onopen = function() { /* オープン後のコールバック */ };
socket.onmessage = function() { /* メッセージを受け取ったときののコールバック */ };
socket.onerror = function() { /* エラーが発生したときのコールバック */ };
socket.onclose = function() { /* クローズ後のコールバック */ };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment