-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
WHAT TO DO:
- In this task, we need to add two more attributes called
focus_valueandsession_modeto the object we are sending out into the WebSocket. - There are three values that are associated with
sesion_modewhich are "start", "in-progress", and "end". You will need to create the functionality that determines when to send "start", "in-progress", and "end". - The
focus_valuewill be the integer that is being passed into the meter. - You will also need to edit
AudioEventobject in SessionHandlerService to have the following fields:
private String audio_data;
private int user_id;
private String time_exported;
private String topic;
private String filePath;
private String session_mode;
private int focus_value;
and make sure that you can successfully pass it all the way to it's Producer in SessionHandler
DONE:
- When the user first begins a recording session you will have session_mode = start and send it over to the WebSocket.
- When the user clicks on stop you will have session_mode = end and have that be sent into the WebSocket as well.
Metadata
Metadata
Assignees
Labels
No labels