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

io.github.hapjava.accessories.WindowAccessory 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.characteristics.impl.windowcovering.PositionStateEnum;
import io.github.hapjava.services.Service;
import io.github.hapjava.services.impl.WindowService;
import java.util.Collection;
import java.util.Collections;
import java.util.concurrent.CompletableFuture;

/** motorized window accessory. */
public interface WindowAccessory extends HomekitAccessory {

  /**
   * Retrieves the position state of the door
   *
   * @return a future which will contain the door's position state
   */
  CompletableFuture getPositionState();

  /**
   * Retrieves the current position of the door
   *
   * @return a future which will contain the door's current position
   */
  CompletableFuture getCurrentPosition();

  /**
   * Retrieves the target position of the door
   *
   * @return a future which will contain the door's target position
   */
  CompletableFuture getTargetPosition();

  /**
   * Sets the targeted state of the door.
   *
   * @param position the targeted position
   * @return a future that completes when the change is made
   * @throws Exception when the change cannot be made
   */
  CompletableFuture setTargetPosition(Integer position) throws Exception;

  /**
   * Subscribes to changes in the door's position state
   *
   * @param callback the function to call when the state changes
   */
  void subscribePositionState(HomekitCharacteristicChangeCallback callback);

  /**
   * Subscribes to changes in the door's current position
   *
   * @param callback the function to call when the current position changes
   */
  void subscribeCurrentPosition(HomekitCharacteristicChangeCallback callback);

  /**
   * Subscribes to changes in the door's target position
   *
   * @param callback the function to call when the target position changes
   */
  void subscribeTargetPosition(HomekitCharacteristicChangeCallback callback);

  /** Unsubscribes from changes in the door's state */
  void unsubscribePositionState();

  /** Unsubscribes from changes in the door's current position */
  void unsubscribeCurrentPosition();

  /** Unsubscribes from changes in the door's target position */
  void unsubscribeTargetPosition();

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy