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

org.tenio.interstellar.functions.Consumer3 Maven / Gradle / Ivy

package org.tenio.interstellar.functions;

import java.io.Serializable;
import java.util.Objects;

/**
 * TODO
 * 

* @author: Ban Tenio * @version: 1.0 * * @param TODO * @param TODO * @param TODO */ @FunctionalInterface public interface Consumer3 extends Serializable, Invoker { /** * * TODO * * @param p1 TODO * @param p2 TODO * @param p3 TODO */ void accept(P1 p1, P2 p2, P3 p3); /** * * TODO * * @param after TODO * @return TODO */ default Consumer3 andThen(Consumer3 after) { Objects.requireNonNull(after); return (p1, p2, p3) -> { accept(p1, p2, p3); after.accept(p1, p2, p3); }; } default Object invoke(Object[] args) { accept((P1) args[0], (P2) args[1], (P3) args[2]); return null; } default boolean hasResult() { return false; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy