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

io.lightflame.bootstrap.Flame Maven / Gradle / Ivy

The newest version!
package io.lightflame.bootstrap;

import java.util.Objects;

@FunctionalInterface
public interface Flame {
    R apply(T ctx) throws Exception;

    default  Flame and(Flame after) {
        Objects.requireNonNull(after);
        return (t) -> after.apply(this.apply(t));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy