Interface JsBiConsumer<T1,T2>

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

@JsFunction @FunctionalInterface public interface JsBiConsumer<T1,T2>
A js-friendly BiConsumer FunctionalInterface
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    apply(T1 one, T2 two)
     
  • Method Details

    • apply

      void apply(T1 one, T2 two)