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

org.wildfly.swarm.config.infinispan.cache_container.JGroupsTransportConsumer Maven / Gradle / Ivy

package org.wildfly.swarm.config.infinispan.cache_container;

import org.wildfly.swarm.config.infinispan.cache_container.JGroupsTransport;
import java.lang.FunctionalInterface;

@FunctionalInterface
public interface JGroupsTransportConsumer> {

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy