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

org.wildfly.swarm.config.messaging.activemq.server.ha_policy.shared_store_colocated.MasterConfigurationConsumer Maven / Gradle / Ivy

package org.wildfly.swarm.config.messaging.activemq.server.ha_policy.shared_store_colocated;

import org.wildfly.swarm.config.messaging.activemq.server.ha_policy.shared_store_colocated.MasterConfiguration;
import java.lang.FunctionalInterface;

@FunctionalInterface
public interface MasterConfigurationConsumer> {

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy