org.wildfly.swarm.config.remoting.OutboundConnectionSupplier Maven / Gradle / Ivy
The newest version!
package org.wildfly.swarm.config.remoting;
import java.lang.FunctionalInterface;
@FunctionalInterface
public interface OutboundConnectionSupplier {
/**
* Constructed instance of OutboundConnection resource
*
* @return The instance
*/
public OutboundConnection get();
}