org.wildfly.swarm.config.logging.LoggerConsumer Maven / Gradle / Ivy
package org.wildfly.swarm.config.logging;
import org.wildfly.swarm.config.logging.Logger;
import java.lang.FunctionalInterface;
@FunctionalInterface
public interface LoggerConsumer> {
/**
* Configure a pre-constructed instance of Logger resource
*
* @parameter Instance of Logger to configure
* @return nothing
*/
void accept(T value);
default LoggerConsumer andThen(LoggerConsumer after) {
return (c) -> {
this.accept(c);
after.accept(c);
};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy