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

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


    // keep track of our current state
    currentState = state;
  }

  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

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

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.