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

io.github.hapjava.characteristics.impl.common.AirPlayEnableCharacteristic Maven / Gradle / Ivy

There is a newer version: 2.0.7
Show newest version
package io.github.hapjava.characteristics.impl.common;

import io.github.hapjava.characteristics.EventableCharacteristic;
import io.github.hapjava.characteristics.ExceptionalConsumer;
import io.github.hapjava.characteristics.HomekitCharacteristicChangeCallback;
import io.github.hapjava.characteristics.impl.base.IntegerCharacteristic;
import java.util.Optional;
import java.util.concurrent.CompletableFuture;
import java.util.function.Consumer;
import java.util.function.Supplier;

/** characteristic to control air play. */
public class AirPlayEnableCharacteristic extends IntegerCharacteristic
    implements EventableCharacteristic {

  public AirPlayEnableCharacteristic(
      Supplier> getter,
      ExceptionalConsumer setter,
      Consumer subscriber,
      Runnable unsubscriber) {
    super(
        "0000025B-0000-1000-8000-0026BB765291",
        "AirPlay enable",
        0,
        1,
        "",
        Optional.of(getter),
        Optional.of(setter),
        Optional.of(subscriber),
        Optional.of(unsubscriber));
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy