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

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


  public void recordMeetingInfo(String meetingId, Map<String, String> info) {
    storeService.recordMeetingInfo(meetingId, info)
  }

  public void destroyMeeting(String meetingID) {
    DestroyMeetingMessage msg = new DestroyMeetingMessage(meetingID);
    String json = MessageToJson.destroyMeetingMessageToJson(msg);
    log.info("Sending destory 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.DestroyMeetingMessage

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.