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

org.rx.util.function.Action Maven / Gradle / Ivy

package org.rx.util.function;

@FunctionalInterface
public interface Action {
    void invoke() throws Throwable;

    default  Func toFunc() {
        return () -> {
            invoke();
            return null;
        };
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy