//----USER 1
channelService.sendMessage(new ChannelMessage(userId, "{\""+Constant.MESSAGE_TYPE+"\":\""+Constant.JOIN_GAME+"\"}"));
channelService.sendMessage(new ChannelMessage(userId, gson.toJson(Checkers.userMap.get(rId))));
channelService.sendMessage(new ChannelMessage(userId, "{\""+Constant.MESSAGE_TYPE+"\":\""+Constant.GAME_BOARD+"\"}"));
channelService.sendMessage(new ChannelMessage(userId, gson.toJson(gm.getCBoard())));
channelService.sendMessage(new ChannelMessage(userId, "{\""+Constant.MESSAGE_TYPE+"\":\""+Constant.GAME_PIECE+"\"}"));
channelService.sendMessage(new ChannelMessage(userId, gson.toJson(gm.getTurn())));
channelService.sendMessage(new ChannelMessage(userId, "{\""+Constant.MESSAGE_TYPE+"\":\""+Constant.GAME_PLAY+"\"}"));
channelService.sendMessage(new ChannelMessage(userId, gson.toJson(Constant.GAME_PLAY)));