Skip to content
Snippets Groups Projects
Commit fd8f38ea authored by Richard Alam's avatar Richard Alam
Browse files

- start implementing meeting manager and broadcast stream

parent 9d98a550
No related branches found
No related tags found
No related merge requests found
package org.bigbluebutton.app.video;
public class Meeting {
public final String id;
public Meeting(String id) {
this.id = id;
}
}
package org.bigbluebutton.app.video;
import java.util.HashMap;
import java.util.Map;
public class MeetingManager {
private VideoApplication app;
private Map<String, Meeting> meetings = new HashMap<String, Meeting>();
public MeetingManager(VideoApplication app) {
this.app = app;
}
public void add(String id) {
Meeting m = new Meeting(id);
meetings.put(m.id, m);
}
public void remove(String id) {
Meeting m = meetings.remove(id);
if (m != null) {
// Close all streams;
}
}
}
package org.bigbluebutton.app.video;
public class VideoStream {
}
......@@ -157,6 +157,8 @@ public class VideoStreamListener implements IStreamListener {
}
}
public void setEventRecordingService(EventRecordingService s) {
recordingService = s;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment