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

org.wildfly.swarm.config.ejb3.FilePassivationStoreConsumer Maven / Gradle / Ivy

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

import org.wildfly.swarm.config.ejb3.FilePassivationStore;
import java.lang.FunctionalInterface;

@FunctionalInterface
public interface FilePassivationStoreConsumer> {

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy