Uses of Interface
com.ning.http.client.BodyGenerator
Packages that use BodyGenerator
Package
Description
-
Uses of BodyGenerator in com.ning.http.client
Methods in com.ning.http.client that return BodyGeneratorModifier and TypeMethodDescriptionRequest.getBodyGenerator()Return the current request's body generator.Methods in com.ning.http.client with parameters of type BodyGeneratorModifier and TypeMethodDescriptionSimpleAsyncHttpClient.post(BodyGenerator bodyGenerator) SimpleAsyncHttpClient.post(BodyGenerator bodyGenerator, BodyConsumer bodyConsumer) SimpleAsyncHttpClient.post(BodyGenerator bodyGenerator, BodyConsumer bodyConsumer, ThrowableHandler throwableHandler) SimpleAsyncHttpClient.post(BodyGenerator bodyGenerator, ThrowableHandler throwableHandler) SimpleAsyncHttpClient.put(BodyGenerator bodyGenerator) SimpleAsyncHttpClient.put(BodyGenerator bodyGenerator, BodyConsumer bodyConsumer) SimpleAsyncHttpClient.put(BodyGenerator bodyGenerator, BodyConsumer bodyConsumer, ThrowableHandler throwableHandler) SimpleAsyncHttpClient.put(BodyGenerator bodyGenerator, ThrowableHandler throwableHandler) RequestBuilderBase.setBody(BodyGenerator bodyGenerator) -
Uses of BodyGenerator in com.ning.http.client.generators
Classes in com.ning.http.client.generators that implement BodyGeneratorModifier and TypeClassDescriptionclassABodyGeneratorbacked by a byte array.classCreates a request body from the contents of a file.classABodyGeneratorwhich use anInputStreamfor reading bytes, without having to read the entire stream in memory. -
Uses of BodyGenerator in com.ning.http.client.providers.grizzly
Classes in com.ning.http.client.providers.grizzly that implement BodyGeneratorModifier and TypeClassDescriptionclassA Grizzly-specificBodyGeneratorthat allows data to be fed to the connection in blocking or non-blocking fashion via the use of aFeedableBodyGenerator.Feeder.