All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.hapjava.accessories.SwitchAccessory Maven / Gradle / Ivy

There is a newer version: 2.0.7
Show newest version
package io.github.hapjava.accessories;

import io.github.hapjava.characteristics.HomekitCharacteristicChangeCallback;
import io.github.hapjava.services.Service;
import io.github.hapjava.services.impl.SwitchService;
import java.util.Collection;
import java.util.Collections;
import java.util.concurrent.CompletableFuture;

/**
 * A simple switch with a binary state.
 *
 * @author Andy Lintner
 */
public interface SwitchAccessory extends HomekitAccessory {

  /**
   * Retrieves the current binary state of the switch.
   *
   * @return a future that will contain the binary state
   */
  CompletableFuture getSwitchState();

  /**
   * Sets the binary state of the switch
   *
   * @param state the binary state to set
   * @return a future that completes when the change is made
   * @throws Exception when the change cannot be made
   */
  CompletableFuture setSwitchState(boolean state) throws Exception;

  /**
   * Subscribes to changes in the binary state of the switch.
   *
   * @param callback the function to call when the state changes.
   */
  void subscribeSwitchState(HomekitCharacteristicChangeCallback callback);

  /** Unsubscribes from changes in the binary state of the switch. */
  void unsubscribeSwitchState();

  @Override
  default Collection getServices() {
    return Collections.singleton(new SwitchService(this));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy