Class Tunable
java.lang.Object
dev.doglog.internal.tunable.Tunable
- All Implemented Interfaces:
AutoCloseable
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidclose()org.wpilib.networktables.BooleanSubscribercreate(String key, boolean defaultValue, @Nullable org.wpilib.util.function.BooleanConsumer onChange) org.wpilib.networktables.DoubleArraySubscribercreate(String key, double[] defaultValue, @Nullable String unit, @Nullable Consumer<double[]> onChange) org.wpilib.networktables.DoubleSubscriberorg.wpilib.networktables.FloatSubscribercreate(String key, float defaultValue, @Nullable String unit, @Nullable org.wpilib.util.function.FloatConsumer onChange) org.wpilib.networktables.IntegerSubscriberorg.wpilib.networktables.StringSubscribervoidsetOptions(DogLogOptions newOptions)
-
Constructor Details
-
Tunable
-
-
Method Details
-
close
public void close()- Specified by:
closein interfaceAutoCloseable
-
create
-
create
public org.wpilib.networktables.DoubleSubscriber create(String key, double defaultValue, @Nullable String unit, @Nullable DoubleConsumer onChange) -
create
-
create
-
create
public org.wpilib.networktables.IntegerSubscriber create(String key, long defaultValue, @Nullable String unit, @Nullable LongConsumer onChange) -
create
-
setOptions
-