Package org.bigbluebutton.api.messaging.converters.messages

Examples of org.bigbluebutton.api.messaging.converters.messages.CreateMeetingMessage


  }
 
  public void createMeeting(String meetingID, String meetingName, Boolean recorded,
                            String voiceBridge, Long duration,
                            Boolean autoStartRecording, Boolean allowStartStopRecording) {
    CreateMeetingMessage msg = new CreateMeetingMessage(meetingID, meetingName,
                                          recorded, voiceBridge, duration,
                                          autoStartRecording, allowStartStopRecording);
    String json = MessageToJson.createMeetingMessageToJson(msg);
    log.info("Sending create meeting message to bbb-apps:[{}]", json);
    sender.send(MessagingConstants.TO_MEETING_CHANNEL, json);     
View Full Code Here

TOP

Related Classes of org.bigbluebutton.api.messaging.converters.messages.CreateMeetingMessage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.