Skip to content
Snippets Groups Projects
Commit 44654d74 authored by Daniel Gerhardt's avatar Daniel Gerhardt
Browse files

Send all relevant data to client when the session is changed via

Socket.IO.
parent 8a3c0b04
Branches
Tags
No related merge requests found
...@@ -105,6 +105,7 @@ public class ARSnovaSocketIOServer { ...@@ -105,6 +105,7 @@ public class ARSnovaSocketIOServer {
public void onData(SocketIOClient client, Session session, AckRequest ackSender) { public void onData(SocketIOClient client, Session session, AckRequest ackSender) {
userService.addUserToSessionBySocketId(client.getSessionId(), session.getKeyword()); userService.addUserToSessionBySocketId(client.getSessionId(), session.getKeyword());
reportActiveUserCountForSession(session.getKeyword()); reportActiveUserCountForSession(session.getKeyword());
reportSessionDataToClient(session.getKeyword(), client);
} }
}); });
...@@ -216,6 +217,21 @@ public class ARSnovaSocketIOServer { ...@@ -216,6 +217,21 @@ public class ARSnovaSocketIOServer {
return result; return result;
} }
/**
* Currently only sends the feedback data to the client. Should be used for all
* relevant Socket.IO data, the client needs to know after joining a session.
*
* @param sessionKey
* @param client
*/
public void reportSessionDataToClient(String sessionKey, SocketIOClient client) {
de.thm.arsnova.entities.Feedback fb = feedbackService.getFeedback(sessionKey);
client.sendEvent("updateFeedback", fb.getValues());
/* updateActiveUserCount does not need to be send since it is broadcasted
* after the client joined the session */
}
public void reportUpdatedFeedbackForSession(String sessionKey) { public void reportUpdatedFeedbackForSession(String sessionKey) {
de.thm.arsnova.entities.Feedback fb = feedbackService.getFeedback(sessionKey); de.thm.arsnova.entities.Feedback fb = feedbackService.getFeedback(sessionKey);
broadcastInSession(sessionKey, "updateFeedback", fb.getValues()); broadcastInSession(sessionKey, "updateFeedback", fb.getValues());
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment