org.wicketstuff.lambda.SerializableBiConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wicketstuff-lambda Show documentation
Show all versions of wicketstuff-lambda Show documentation
WicketStuff Lambda is a collection of Java 8 functionality.
The newest version!
package org.wicketstuff.lambda;
import java.io.Serializable;
import java.util.function.BiConsumer;
/**
* {@link BiConsumer} that is {@link Serializable}.
*
* @param
* - the type of the first argument to the operation
* @param
* - the type of the second argument to the operation
* @deprecated Use {@link org.danekja.java.util.function.serializable.SerializableBiConsumer} instead
*/
public interface SerializableBiConsumer extends Serializable, BiConsumer {
}