Class MixedAttribute

java.lang.Object
io.netty.util.AbstractReferenceCounted
io.netty.handler.codec.http.multipart.MixedAttribute
All Implemented Interfaces:
ByteBufHolder, Attribute, HttpData, InterfaceHttpData, ReferenceCounted, Comparable<InterfaceHttpData>

public class MixedAttribute extends AbstractReferenceCounted implements Attribute
Mixed implementation using both in Memory and in File with a limit of size
  • Constructor Details

    • MixedAttribute

      public MixedAttribute(String name, long limitSize)
    • MixedAttribute

      public MixedAttribute(String name, long definedSize, long limitSize)
    • MixedAttribute

      public MixedAttribute(String name, long limitSize, Charset charset)
    • MixedAttribute

      public MixedAttribute(String name, long limitSize, Charset charset, String baseDir, boolean deleteOnExit)
    • MixedAttribute

      public MixedAttribute(String name, long definedSize, long limitSize, Charset charset)
    • MixedAttribute

      public MixedAttribute(String name, long definedSize, long limitSize, Charset charset, String baseDir, boolean deleteOnExit)
    • MixedAttribute

      public MixedAttribute(String name, String value, long limitSize)
    • MixedAttribute

      public MixedAttribute(String name, String value, long limitSize, Charset charset)
    • MixedAttribute

      public MixedAttribute(String name, String value, long limitSize, Charset charset, String baseDir, boolean deleteOnExit)
  • Method Details