Package org.openhab.binding.xbmc.rpc

Examples of org.openhab.binding.xbmc.rpc.XbmcConnector.ping()


  protected void execute() {
    for (Map.Entry<String, XbmcConnector> entry : connectors.entrySet()) {
      XbmcConnector connector = entry.getValue();
      if (connector.isConnected()) {
        // we are still connected but send a ping to make sure
        connector.ping();
        // refresh all players
        connector.updatePlayerStatus(true);
      } else {
        // broken connection so attempt to reconnect
        logger.debug("Broken connection found for '{}', attempting to reconnect...", entry.getKey());
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.