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

Examples of org.openhab.binding.xbmc.rpc.calls.JSONRPCPing.execute()


   * 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
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.