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

org.wildfly.swarm.config.remoting.HTTPConnectorConsumer Maven / Gradle / Ivy

The newest version!
package org.wildfly.swarm.config.remoting;

import org.wildfly.swarm.config.remoting.HTTPConnector;
import java.lang.FunctionalInterface;

@FunctionalInterface
public interface HTTPConnectorConsumer> {

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy