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

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


  }

  public void requestApplicationUpdate() {
    final ApplicationGetProperties app = new ApplicationGetProperties(client, httpUri);
   
    app.execute(new Runnable() {
      public void run() {
        // now update each of the openHAB items for each property
        volume = new BigDecimal(app.getVolume());
        updateProperty("Application.Volume", new PercentType(volume));               
      }
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.