Bitwig Studio Control Surface API  4.0.1
ColorHardwareProperty.java
1 package com.bitwig.extension.controller.api;
2 
3 import java.util.function.Consumer;
4 import java.util.function.Supplier;
5 
7 
13 public interface ColorHardwareProperty extends HardwareProperty
14 {
17 
20 
26  void onUpdateHardware(Consumer<Color> sendValueConsumer);
27 
29  void setValue(Color value);
30 
32  void setValueSupplier(Supplier<Color> supplier);
33 }
void onUpdateHardware(Consumer< Color > sendValueConsumer)