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

com.github.edgar615.util.vertx.function.Consumer5 Maven / Gradle / Ivy

The newest version!
package com.github.edgar615.util.vertx.function;

import java.util.Objects;

/**
 * Created by Edgar on 2016/8/1.
 *
 * @author Edgar  Date 2016/8/1
 */
@FunctionalInterface
public interface Consumer5 {
  void accept(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5);

  default Consumer5 andThen(Consumer5 after) {
    Objects.requireNonNull(after);

    return (t1, t2, t3, t4, t5) -> {
      accept(t1, t2, t3, t4, t5);
      after.accept(t1, t2, t3, t4, t5);
    };
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy