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

com.adgear.anoa.Handler2 Maven / Gradle / Ivy

Go to download

Core classes for Anoa library, which aims to be a safe, convenient and fast record de/serialization wrapper for the Avro, Thrift and Jackson libraries, using the functional idioms of Java 8. The anoa-core module tries to keep upstream dependencies to a minimum.

There is a newer version: 3.1.2
Show newest version
package com.adgear.anoa;

import java.util.Objects;


/**
 * Functional interface for exception handlers with two extra arguments
 *
 * @param  Metadata type
 */
public interface Handler2 {

  M[] apply(Throwable handled, Object value, Object other);

  /**
   * Functional interface for a function taking three arguments
   *
   * @param  Value type of argument 1
   * @param  Value type of argument 2
   * @param  Value type of argument 3
   * @param  Value type of result
   * @see java.util.function.BiFunction
   */
  interface TriFunction {
    R apply(T handled, U value, V other);
  }

  /**
   * Convenience factory method for transforming handlers which map an exception to a single
   * meta-datum.
   *
   * @param mapToMetaDatum exception handler
   * @param  Metadata type
   * @return an instance wrapping the result of {@code mapToMetaDatum} in an array.
   */
  static  /*@NonNull*/ Handler2 of(
      /*@NonNull*/ TriFunction mapToMetaDatum) {
    Objects.requireNonNull(mapToMetaDatum);
    return (t, u, v) -> AnoaHandler.arraySize1(mapToMetaDatum.apply(t, u, v));
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy