Notes for next steps

This commit is contained in:
Jonathon Wilson 2012-10-16 20:30:00 -06:00
parent 2c0690bb34
commit bee3187e5a
3 changed files with 21 additions and 1 deletions

View File

@ -1,3 +1,7 @@
// TODO: Rename? This is really only the websocket/messaging
// part of the server (none of the REST calls go through this).
// perhaps something like RealTimeMessages or something...
//
// The wrapper around the web-socket connection to the server
(function(context, $) {
var server = {};

View File

@ -3,6 +3,22 @@
context.JK = context.JK || {};
context.JK.CreateSessionScreen = function(app) {
var logger = context.JK.logger;
var realtimeMessaging = context.JK.JamServer;
/*
Message from Seth on sequence for creating/joining sessions:
02:31:46 PM) Seth Call: sequence:
(02:31:53 PM) Seth Call: LOGIN websocket (get your client_id)
(02:32:02 PM) Seth Call: CRETAE SESSION
(02:32:09 PM) Seth Call: CREATE PARTICIPANT (pass in client_id)
(02:32:12 PM) Seth Call: that's it for client 1
(02:32:13 PM) Seth Call: client 2
(02:32:20 PM) Seth Call: LOGIN WEBSOCKET (get your client_id)
(02:32:29 PM) Seth Call: CREATE PARTICIPANT(pass in client_id for client2)
(02:32:31 PM) Seth Call: that's it
(02:32:43 PM) Seth Call: USER_JOINED_MUSIC_SESSION is an event from the server
(02:32:52 PM) Seth Call: and LOGIN_MUSIC_SESSION is deprecated/junk
*/
function afterShow(data) {}

View File

@ -54,7 +54,7 @@
*/
this.register = function() {
for (var message in messages) {
logger.debug("registering " + message);
logger.debug("registering logger.debug: " + message);
context.JamServer.registerMessageCallback(message, logMessage);
}