Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ARSnova Backend
Manage
Activity
Members
Labels
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Privacy
Imprint
Contact
Snippets
Groups
Projects
Show more breadcrumbs
Paul-Christian Volkmer
ARSnova Backend
Commits
7bfe28d0
Commit
7bfe28d0
authored
12 years ago
by
Paul-Christian Volkmer
Browse files
Options
Downloads
Patches
Plain Diff
Task #3852: Send plain values array instead of full feedback object
parent
63e3101d
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/de/thm/arsnova/socket/ARSnovaSocketIOServer.java
+1
-1
1 addition, 1 deletion
...ain/java/de/thm/arsnova/socket/ARSnovaSocketIOServer.java
with
1 addition
and
1 deletion
src/main/java/de/thm/arsnova/socket/ARSnovaSocketIOServer.java
+
1
−
1
View file @
7bfe28d0
...
@@ -47,7 +47,7 @@ public class ARSnovaSocketIOServer {
...
@@ -47,7 +47,7 @@ public class ARSnovaSocketIOServer {
public
void
onData
(
SocketIOClient
client
,
Feedback
data
)
{
public
void
onData
(
SocketIOClient
client
,
Feedback
data
)
{
logger
.
info
(
"setFeedback.onData: Client: {}, message: {}"
,
new
Object
[]
{
client
,
data
});
logger
.
info
(
"setFeedback.onData: Client: {}, message: {}"
,
new
Object
[]
{
client
,
data
});
sessionService
.
postFeedback
(
data
.
getSessionkey
(),
data
.
getValue
());
sessionService
.
postFeedback
(
data
.
getSessionkey
(),
data
.
getValue
());
server
.
getBroadcastOperations
().
sendEvent
(
"updateFeedback"
,
sessionService
.
getFeedback
(
data
.
getSessionkey
()));
server
.
getBroadcastOperations
().
sendEvent
(
"updateFeedback"
,
sessionService
.
getFeedback
(
data
.
getSessionkey
())
.
getValues
()
);
}
}
});
});
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment