Package org.openhab.binding.xbmc.rpc.calls

Examples of org.openhab.binding.xbmc.rpc.calls.JSONRPCPing


  /**
   * Send a ping to the XBMC host and wait for a 'pong'.
   */
  public void ping() {
    final JSONRPCPing ping = new JSONRPCPing(client, httpUri);
   
    ping.execute(new Runnable() {
      @Override
      public void run() {
        connected = ping.isPong();
      }
    });
  }
View Full Code Here

TOP

Related Classes of org.openhab.binding.xbmc.rpc.calls.JSONRPCPing

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.