
org.rx.util.function.PredicateAction Maven / Gradle / Ivy
package org.rx.util.function;
import lombok.SneakyThrows;
@FunctionalInterface
public interface PredicateAction {
boolean invoke() throws Throwable;
@SneakyThrows
default boolean test() {
return invoke();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy