org.wildfly.swarm.config.ejb3.MDBDeliveryGroupConsumer Maven / Gradle / Ivy
package org.wildfly.swarm.config.ejb3;
import org.wildfly.swarm.config.ejb3.MDBDeliveryGroup;
import java.lang.FunctionalInterface;
@FunctionalInterface
public interface MDBDeliveryGroupConsumer> {
/**
* Configure a pre-constructed instance of MDBDeliveryGroup resource
*
* @parameter Instance of MDBDeliveryGroup to configure
* @return nothing
*/
void accept(T value);
default MDBDeliveryGroupConsumer andThen(
MDBDeliveryGroupConsumer after) {
return (c) -> {
this.accept(c);
after.accept(c);
};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy