Created
January 23, 2011 13:56
-
-
Save kamito/792093 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// チェンネルインスタンスを生成 | |
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