Package | Description |
---|---|
io.netty.handler.codec.http.multipart |
HTTP multipart support.
|
Modifier and Type | Field and Description |
---|---|
private HttpPostRequestDecoder.MultiPartStatus |
HttpPostStandardRequestDecoder.currentStatus
Current getStatus
|
private HttpPostRequestDecoder.MultiPartStatus |
HttpPostMultipartRequestDecoder.currentStatus
Current getStatus
|
Modifier and Type | Method and Description |
---|---|
static HttpPostRequestDecoder.MultiPartStatus |
HttpPostRequestDecoder.MultiPartStatus.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HttpPostRequestDecoder.MultiPartStatus[] |
HttpPostRequestDecoder.MultiPartStatus.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
private InterfaceHttpData |
HttpPostMultipartRequestDecoder.decodeMultipart(HttpPostRequestDecoder.MultiPartStatus state)
Decode a multipart request by pieces
NOTSTARTED PREAMBLE ( (HEADERDELIMITER DISPOSITION (FIELD | FILEUPLOAD))* (HEADERDELIMITER DISPOSITION MIXEDPREAMBLE (MIXEDDELIMITER MIXEDDISPOSITION MIXEDFILEUPLOAD)+ MIXEDCLOSEDELIMITER)* CLOSEDELIMITER)+ EPILOGUE Inspired from HttpMessageDecoder |
private InterfaceHttpData |
HttpPostMultipartRequestDecoder.findMultipartDelimiter(java.lang.String delimiter,
HttpPostRequestDecoder.MultiPartStatus dispositionStatus,
HttpPostRequestDecoder.MultiPartStatus closeDelimiterStatus)
Find the next Multipart Delimiter
|