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

org.wildfly.swarm.config.logging.logging_profile.CustomHandlerConsumer Maven / Gradle / Ivy

package org.wildfly.swarm.config.logging.logging_profile;

import org.wildfly.swarm.config.logging.logging_profile.CustomHandler;
import java.lang.FunctionalInterface;

@FunctionalInterface
public interface CustomHandlerConsumer> {

	/**
	 * Configure a pre-constructed instance of CustomHandler resource
	 * 
	 * @parameter Instance of CustomHandler to configure
	 * @return nothing
	 */
	void accept(T value);

	default CustomHandlerConsumer andThen(CustomHandlerConsumer after) {
		return (c) -> {
			this.accept(c);
			after.accept(c);
		};
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy