Interface Tunables.TunableHandler<T>

Enclosing class:
Tunables
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface Tunables.TunableHandler<T>
Interface for wrapping objects to be tunable. Instances of this interface should be passed to Tunables.registerHandler(Class, TunableHandler) in order for objects of the handler's type to be processed.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    init(TunableTable table, T obj)
    This method should implement the setup for an object to be tunable.
  • Method Details

    • init

      void init(TunableTable table, T obj)
      This method should implement the setup for an object to be tunable.
      Parameters:
      table - The table to object is being added to.
      obj - The object to make tunable.