All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.weaviate.client.base.util.TriConsumer Maven / Gradle / Ivy

There is a newer version: 5.0.1
Show newest version
package io.weaviate.client.base.util;

@FunctionalInterface
public interface TriConsumer {

  /**
   * Performs this operation on the given arguments.
   *
   * @param t the first input argument
   * @param u the second input argument
   * @param v the third input argument
   */
  void accept(T t, U u, V v);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy