org.wildfly.swarm.config.MessagingActiveMQConsumer Maven / Gradle / Ivy
The newest version!
package org.wildfly.swarm.config;
import org.wildfly.swarm.config.MessagingActiveMQ;
import java.lang.FunctionalInterface;
@FunctionalInterface
public interface MessagingActiveMQConsumer> {
/**
* Configure a pre-constructed instance of MessagingActiveMQ resource
*
* @parameter Instance of MessagingActiveMQ to configure
* @return nothing
*/
void accept(T value);
default MessagingActiveMQConsumer andThen(
MessagingActiveMQConsumer after) {
return (c) -> {
this.accept(c);
after.accept(c);
};
}
}