You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/transport-netty4/src/main/java/org/elasticsearch/transport/netty4/Netty4MessageChannelHandler.java
+121-3Lines changed: 121 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -22,12 +22,17 @@
22
22
importio.netty.buffer.ByteBuf;
23
23
importio.netty.channel.Channel;
24
24
importio.netty.channel.ChannelDuplexHandler;
25
+
importio.netty.channel.ChannelFuture;
25
26
importio.netty.channel.ChannelHandlerContext;
27
+
importio.netty.channel.ChannelPromise;
26
28
importio.netty.util.Attribute;
27
29
importorg.elasticsearch.ElasticsearchException;
28
30
importorg.elasticsearch.ExceptionsHelper;
29
31
importorg.elasticsearch.transport.Transports;
30
32
33
+
importjava.nio.channels.ClosedChannelException;
34
+
importjava.util.ArrayDeque;
35
+
importjava.util.Queue;
31
36
32
37
/**
33
38
* A handler (must be the last one!) that does size based frame decoding and forwards the actual message
@@ -37,13 +42,17 @@ final class Netty4MessageChannelHandler extends ChannelDuplexHandler {
0 commit comments