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

com.github.yiuman.citrus.support.wrapper.BiConsumerWrapper Maven / Gradle / Ivy

There is a newer version: 0.15.0
Show newest version
package com.github.yiuman.citrus.support.wrapper;

/**
 * BiConsumer接口的扩展,用于抛异常
 *
 * @author yiuman
 * @date 2020/4/3
 */
public interface BiConsumerWrapper {

    /**
     * 接受两个参数并处理
     *
     * @param t 参数1
     * @param u 参数2
     * @throws E 抛出的异常
     */
    void accept(T t, U u) throws E;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy