
com.doctor.dubbo.remoting.http.jetty.JettyHttpBinder Maven / Gradle / Ivy
package com.doctor.dubbo.remoting.http.jetty;
import com.alibaba.dubbo.common.URL;
import com.alibaba.dubbo.remoting.http.HttpBinder;
import com.alibaba.dubbo.remoting.http.HttpHandler;
import com.alibaba.dubbo.remoting.http.HttpServer;
/**
* @author sdcuike
*
* time 2016年2月14日 下午3:06:54
*/
public class JettyHttpBinder implements HttpBinder {
@Override
public HttpServer bind(URL url, HttpHandler handler) {
return new JettyHttpServer(url, handler);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy