File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
reactor-netty-http/src/main/java/reactor/netty/http/client Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 16
16
package reactor .netty .http .client ;
17
17
18
18
import io .netty .channel .Channel ;
19
+ import io .netty .channel .ChannelDuplexHandler ;
19
20
import io .netty .channel .ChannelFuture ;
20
21
import io .netty .channel .ChannelFutureListener ;
21
22
import io .netty .channel .ChannelHandlerContext ;
22
23
import io .netty .channel .ChannelPromise ;
23
24
import io .netty .handler .codec .http2 .DefaultHttp2PingFrame ;
24
- import io .netty .handler .codec .http2 .Http2ChannelDuplexHandler ;
25
25
import io .netty .handler .codec .http2 .Http2ConnectionEncoder ;
26
26
import reactor .util .Logger ;
27
27
import reactor .util .Loggers ;
51
51
* @author raccoonback
52
52
* @since 1.2.3
53
53
*/
54
- public class Http2ConnectionLivenessHandler extends Http2ChannelDuplexHandler {
54
+ public class Http2ConnectionLivenessHandler extends ChannelDuplexHandler {
55
55
56
56
private static final Logger log = Loggers .getLogger (Http2ConnectionLivenessHandler .class );
57
57
You can’t perform that action at this time.
0 commit comments