Uses of Class
io.netty.handler.codec.http.multipart.HttpPostRequestEncoder.ErrorDataEncoderException
Packages that use HttpPostRequestEncoder.ErrorDataEncoderException
-
Uses of HttpPostRequestEncoder.ErrorDataEncoderException in io.netty.handler.codec.http.multipart
Methods in io.netty.handler.codec.http.multipart that throw HttpPostRequestEncoder.ErrorDataEncoderExceptionModifier and TypeMethodDescriptionvoid
HttpPostRequestEncoder.addBodyAttribute
(String name, String value) Add a simple attribute in the body as Name=Valuevoid
HttpPostRequestEncoder.addBodyFileUpload
(String name, File file, String contentType, boolean isText) Add a file as a FileUploadvoid
HttpPostRequestEncoder.addBodyFileUpload
(String name, String filename, File file, String contentType, boolean isText) Add a file as a FileUploadvoid
HttpPostRequestEncoder.addBodyFileUploads
(String name, File[] file, String[] contentType, boolean[] isText) Add a series of Files associated with one File parametervoid
HttpPostRequestEncoder.addBodyHttpData
(InterfaceHttpData data) Add the InterfaceHttpData to the Body listprivate String
HttpPostRequestEncoder.encodeAttribute
(String s, Charset charset) Encode one attributeprivate HttpContent
HttpPostRequestEncoder.encodeNextChunkMultipart
(int sizeleft) From the current context (currentBuffer and currentData), returns the next HttpChunk (if possible) trying to get sizeleft bytes more into the currentBuffer.private HttpContent
HttpPostRequestEncoder.encodeNextChunkUrlEncoded
(int sizeleft) From the current context (currentBuffer and currentData), returns the next HttpChunk (if possible) trying to get sizeleft bytes more into the currentBuffer.HttpPostRequestEncoder.finalizeRequest()
Finalize the request by preparing the Header in the request and returns the request ready to be sent.
Once finalized, no data must be added.
If the request does not need chunk (isChunked() == false), this request is the only object to send to the remote server.private HttpContent
HttpPostRequestEncoder.nextChunk()
Returns the next available HttpChunk.void
HttpPostRequestEncoder.setBodyHttpDatas
(List<InterfaceHttpData> datas) Set the Body HttpDatas listConstructors in io.netty.handler.codec.http.multipart that throw HttpPostRequestEncoder.ErrorDataEncoderExceptionModifierConstructorDescriptionHttpPostRequestEncoder
(HttpRequest request, boolean multipart) HttpPostRequestEncoder
(HttpDataFactory factory, HttpRequest request, boolean multipart) HttpPostRequestEncoder
(HttpDataFactory factory, HttpRequest request, boolean multipart, Charset charset, HttpPostRequestEncoder.EncoderMode encoderMode)