Package org.bigbluebutton.conference.service.messaging

Examples of org.bigbluebutton.conference.service.messaging.KeepAliveMessage


    } else if (channel.equalsIgnoreCase(MessagingConstants.TO_SYSTEM_CHANNEL)) {
      IMessage msg = MessageFromJsonConverter.convert(message);
     
      if (msg != null) {
        if (msg instanceof KeepAliveMessage) {
          KeepAliveMessage emm = (KeepAliveMessage) msg;
          log.debug("Received KeepAliveMessage request. Meeting id [{}]", emm.keepAliveId);
          bbbGW.isAliveAudit(emm.keepAliveId);         
        }
      }
    }
View Full Code Here

TOP

Related Classes of org.bigbluebutton.conference.service.messaging.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.