Class HttpMultiPartContentEncoder

  • All Implemented Interfaces:
    io.netty.channel.ChannelHandler, io.netty.channel.ChannelOutboundHandler

    public class HttpMultiPartContentEncoder
    extends io.netty.handler.codec.http.HttpObjectEncoder<HttpMultiPart>
    Encodes a stream of HttpMultiPart objects into a MIME encoded document. Created by acurtis on 3/22/17.
    • Nested Class Summary

      • Nested classes/interfaces inherited from interface io.netty.channel.ChannelHandler

        io.netty.channel.ChannelHandler.Sharable
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      protected void encode​(io.netty.channel.ChannelHandlerContext ctx, java.lang.Object msg, java.util.List<java.lang.Object> out)  
      protected void encodeInitialLine​(io.netty.buffer.ByteBuf buf, HttpMultiPart message)  
      void write​(io.netty.channel.ChannelHandlerContext ctx, java.lang.Object msg, io.netty.channel.ChannelPromise promise)  
      • Methods inherited from class io.netty.handler.codec.http.HttpObjectEncoder

        acceptOutboundMessage, encodeAscii, encodeHeaders, isContentAlwaysEmpty, sanitizeHeadersBeforeEncode
      • Methods inherited from class io.netty.channel.ChannelOutboundHandlerAdapter

        bind, close, connect, deregister, disconnect, flush, read
      • Methods inherited from class io.netty.channel.ChannelHandlerAdapter

        ensureNotSharable, exceptionCaught, handlerAdded, handlerRemoved, isSharable
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface io.netty.channel.ChannelHandler

        exceptionCaught, handlerAdded, handlerRemoved
    • Constructor Detail

      • HttpMultiPartContentEncoder

        public HttpMultiPartContentEncoder()
      • HttpMultiPartContentEncoder

        public HttpMultiPartContentEncoder​(int chunkSize,
                                           int maxChunkSize)
    • Method Detail

      • encode

        protected void encode​(io.netty.channel.ChannelHandlerContext ctx,
                              java.lang.Object msg,
                              java.util.List<java.lang.Object> out)
                       throws java.lang.Exception
        Overrides:
        encode in class io.netty.handler.codec.http.HttpObjectEncoder<HttpMultiPart>
        Throws:
        java.lang.Exception
      • write

        public void write​(io.netty.channel.ChannelHandlerContext ctx,
                          java.lang.Object msg,
                          io.netty.channel.ChannelPromise promise)
                   throws java.lang.Exception
        Specified by:
        write in interface io.netty.channel.ChannelOutboundHandler
        Overrides:
        write in class io.netty.handler.codec.MessageToMessageEncoder<java.lang.Object>
        Throws:
        java.lang.Exception
      • encodeInitialLine

        protected void encodeInitialLine​(io.netty.buffer.ByteBuf buf,
                                         HttpMultiPart message)
                                  throws java.lang.Exception
        Specified by:
        encodeInitialLine in class io.netty.handler.codec.http.HttpObjectEncoder<HttpMultiPart>
        Throws:
        java.lang.Exception