use of org.bigbluebutton.common.messages.PresentationRemovedMessage in project bigbluebutton by bigbluebutton.
the class PresentationClientMessageSender method processPresentationRemovedMessage.
private void processPresentationRemovedMessage(String json) {
PresentationRemovedMessage msg = PresentationRemovedMessage.fromJson(json);
if (msg != null) {
Map<String, Object> args = new HashMap<String, Object>();
args.put("presentationID", msg.presentationId);
Map<String, Object> message = new HashMap<String, Object>();
Gson gson = new Gson();
message.put("msg", gson.toJson(args));
BroadcastClientMessage m = new BroadcastClientMessage(msg.meetingId, "removePresentationCallback", message);
service.sendMessage(m);
}
}
Aggregations