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

org.wildfly.swarm.config.undertow.servlet_container.WebsocketsSettingConsumer Maven / Gradle / Ivy

package org.wildfly.swarm.config.undertow.servlet_container;

import org.wildfly.swarm.config.undertow.servlet_container.WebsocketsSetting;
import java.lang.FunctionalInterface;

@FunctionalInterface
public interface WebsocketsSettingConsumer> {

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy