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