Interface Debounce.DebounceEmissionHandler<T>

Type Parameters:
T - The type of the user input.
Enclosing class:
Debounce<T>
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 Debounce.DebounceEmissionHandler<T>
Function supplied from outside which will handle any user input emissions.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    handle(T value)
     
  • Method Details

    • handle

      void handle(T value)