org.wildfly.swarm.config.jmx.configuration.HandlerConsumer Maven / Gradle / Ivy
The newest version!
package org.wildfly.swarm.config.jmx.configuration;
import org.wildfly.swarm.config.jmx.configuration.Handler;
import java.lang.FunctionalInterface;
@FunctionalInterface
public interface HandlerConsumer> {
/**
* Configure a pre-constructed instance of Handler resource
*
* @parameter Instance of Handler to configure
* @return nothing
*/
void accept(T value);
default HandlerConsumer andThen(HandlerConsumer after) {
return (c) -> {
this.accept(c);
after.accept(c);
};
}
}