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

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


    log.info("Sending create meeting message to bbb-apps:[{}]", json);
    sender.send(MessagingConstants.TO_MEETING_CHANNEL, json);     
  }
 
  public void endMeeting(String meetingId) {
    EndMeetingMessage msg = new EndMeetingMessage(meetingId);
    String json = MessageToJson.endMeetingMessageToJson(msg);
    log.info("Sending end 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.EndMeetingMessage

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.