io.vlingo.common.SerializableConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vlingo-common Show documentation
Show all versions of vlingo-common Show documentation
These are just a few common tools shared across various vlingo projects.
package io.vlingo.common;
import java.io.Serializable;
import java.util.function.Consumer;
@FunctionalInterface
public interface SerializableConsumer extends Consumer, Serializable {
}