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

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


    log.info("Sending end meeting message to bbb-apps:[{}]", json);
    sender.send(MessagingConstants.TO_MEETING_CHANNEL, json)
  }

  public void sendKeepAlive(String keepAliveId) {
    KeepAliveMessage msg = new KeepAliveMessage(keepAliveId);
    String json = MessageToJson.keepAliveMessageToJson(msg);
    sender.send(MessagingConstants.TO_SYSTEM_CHANNEL, json);   
  }
View Full Code Here

TOP

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

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.