Uses of Class
org.jboss.resteasy.spi.config.Threshold
-
Packages that use Threshold Package Description org.jboss.resteasy.client.jaxrs.engines org.jboss.resteasy.resteasy_jaxrs.i18n org.jboss.resteasy.spi org.jboss.resteasy.spi.config -
-
Uses of Threshold in org.jboss.resteasy.client.jaxrs.engines
Methods in org.jboss.resteasy.client.jaxrs.engines that return Threshold Modifier and Type Method Description Threshold
ManualClosingApacheHttpClient43Engine. getFileUploadMemoryThreshold()
Returns the memory threshold of the amount of data to hold in memory.Methods in org.jboss.resteasy.client.jaxrs.engines with parameters of type Threshold Modifier and Type Method Description void
ManualClosingApacheHttpClient43Engine. setFileUploadMemoryThreshold(Threshold threshold)
Sets the memory threshold for the amount of content to hold in memory before it offloads to offline storage. -
Uses of Threshold in org.jboss.resteasy.resteasy_jaxrs.i18n
Methods in org.jboss.resteasy.resteasy_jaxrs.i18n with parameters of type Threshold Modifier and Type Method Description IllegalStateException
Messages_$bundle. fileLimitReached(Threshold limit, String propertyName)
IllegalStateException
Messages. fileLimitReached(Threshold limit, String propertyName)
-
Uses of Threshold in org.jboss.resteasy.spi
Constructors in org.jboss.resteasy.spi with parameters of type Threshold Constructor Description EntityOutputStream(Threshold memoryThreshold)
Creates a new entity stream with the maximum in memory threshold of the supplied value.EntityOutputStream(Threshold memoryThreshold, Path tmpDir, Supplier<String> filePrefix)
Creates a new entity stream with the maximum in memory threshold and a file prefix to be used if the stream needs to be written to a file due to the threshold.EntityOutputStream(Threshold memoryThreshold, Path tmpDir, Threshold fileThreshold, Supplier<String> filePrefix)
Creates a new entity stream with the maximum in memory threshold and a file prefix to be used if the stream needs to be written to a file due to the threshold.EntityOutputStream(Threshold memoryThreshold, Supplier<String> filePrefix)
Creates a new entity stream with the maximum in memory threshold and a file prefix to be used if the stream needs to be written to a file due to the threshold. -
Uses of Threshold in org.jboss.resteasy.spi.config
Fields in org.jboss.resteasy.spi.config declared as Threshold Modifier and Type Field Description static Threshold
Threshold. DEFAULT
static Threshold
Threshold. NONE
Fields in org.jboss.resteasy.spi.config with type parameters of type Threshold Modifier and Type Field Description static Options<Threshold>
Options. ENTITY_FILE_THRESHOLD
An option for the threshold of theEntityOutputStream
to write to a file.static Options<Threshold>
Options. ENTITY_MEMORY_THRESHOLD
An option for the threshold of theEntityOutputStream
.Methods in org.jboss.resteasy.spi.config that return Threshold Modifier and Type Method Description static Threshold
Threshold. of(long size, SizeUnit unit)
Creates a new threshold.static Threshold
Threshold. valueOf(String value)
Parses the given string representation of a threshold.
-