io.github.quickmsg.common.transport.TransportFactory Maven / Gradle / Ivy
The newest version!
package io.github.quickmsg.common.transport;
import io.github.quickmsg.common.config.Configuration;
/**
* @author luxurong
*/
public interface TransportFactory {
/**
* 创建通道
*
* @param c {@link Configuration}
* @return {@link Transport}
*/
Transport createTransport(C c);
}