Package com.mku.func

Interface TriConsumer<T1,T2,T3>

Type Parameters:
T1 - Type of first argument
T2 - Type of second argument
T3 - Type of third argument

public interface TriConsumer<T1,T2,T3>
Backwards compatibility TriConsumer class for devices with Android 23 and prior.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(T1 data1, T2 data2, T3 data3)
    Accept the data
  • Method Details

    • accept

      void accept(T1 data1, T2 data2, T3 data3)
      Accept the data
      Parameters:
      data1 - The first object
      data2 - The second object
      data3 - The third object