Package org.openhab.core.drools.event

Examples of org.openhab.core.drools.event.StateEvent


  /**
   * {@inheritDoc}
   */
  public void stateChanged(Item item, State oldState, State newState) {
    eventQueue.add(new StateEvent(item, oldState, newState));
  }
View Full Code Here


  /**
   * {@inheritDoc}
   */
  public void stateUpdated(Item item, State state) {
    eventQueue.add(new StateEvent(item, state));
  }
View Full Code Here

TOP

Related Classes of org.openhab.core.drools.event.StateEvent

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.