Class HttpStreamsClientHandler
java.lang.Object
io.netty.channel.ChannelHandlerAdapter
io.netty.channel.ChannelInboundHandlerAdapter
io.netty.channel.ChannelDuplexHandler
software.amazon.awssdk.http.nio.netty.internal.nrs.HttpStreamsClientHandler
- All Implemented Interfaces:
- io.netty.channel.ChannelHandler,- io.netty.channel.ChannelInboundHandler,- io.netty.channel.ChannelOutboundHandler
Handler that converts written 
StreamedHttpRequest messages into HttpRequest messages
 followed by HttpContent messages and reads HttpResponse messages followed by
 HttpContent messages and produces StreamedHttpResponse messages.
 This allows request and response bodies to be handled using reactive streams.
 There are two types of messages that this handler accepts for writing, StreamedHttpRequest and
 FullHttpRequest. Writing any other messages may potentially lead to HTTP message mangling.
 There are two types of messages that this handler will send down the chain, StreamedHttpResponse,
 and FullHttpResponse. If ChannelOption.AUTO_READ is false for the channel,
 then any StreamedHttpResponse messages must be subscribed to consume the body, otherwise
 it's possible that no read will be done of the messages.
 As long as messages are returned in the order that they arrive, this handler implicitly supports HTTP
 pipelining.
 This class contains source imported from https://github.com/playframework/netty-reactive-streams,
 licensed under the Apache License 2.0, available at the time of the fork (1/31/2020) here:
 https://github.com/playframework/netty-reactive-streams/blob/master/LICENSE.txt
 All original source licensed under the Apache License 2.0 by playframework. All modifications are
 licensed under the Apache License 2.0 by Amazon Web Services.- 
Nested Class SummaryNested classes/interfaces inherited from interface io.netty.channel.ChannelHandlerio.netty.channel.ChannelHandler.Sharable
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidchannelRead(io.netty.channel.ChannelHandlerContext ctx, Object msg) voidchannelReadComplete(io.netty.channel.ChannelHandlerContext ctx) voidclose(io.netty.channel.ChannelHandlerContext ctx, io.netty.channel.ChannelPromise future) voidwrite(io.netty.channel.ChannelHandlerContext ctx, Object msg, io.netty.channel.ChannelPromise promise) Methods inherited from class io.netty.channel.ChannelDuplexHandlerbind, connect, deregister, disconnect, flush, readMethods inherited from class io.netty.channel.ChannelInboundHandlerAdapterchannelActive, channelInactive, channelRegistered, channelUnregistered, channelWritabilityChanged, exceptionCaught, userEventTriggeredMethods inherited from class io.netty.channel.ChannelHandlerAdapterhandlerAdded, handlerRemoved, isSharableMethods inherited from class java.lang.Objectequals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.netty.channel.ChannelHandlerhandlerAdded, handlerRemoved
- 
Constructor Details- 
HttpStreamsClientHandlerpublic HttpStreamsClientHandler()
 
- 
- 
Method Details- 
close
- 
channelRead
- 
channelReadComplete
- 
write
 
-