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