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 ThresholdManualClosingApacheHttpClient43Engine. 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 voidManualClosingApacheHttpClient43Engine. 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 IllegalStateExceptionMessages_$bundle. fileLimitReached(Threshold limit, String propertyName)IllegalStateExceptionMessages. 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 ThresholdThreshold. DEFAULTstatic ThresholdThreshold. NONEFields in org.jboss.resteasy.spi.config with type parameters of type Threshold Modifier and Type Field Description static Options<Threshold>Options. ENTITY_FILE_THRESHOLDAn option for the threshold of theEntityOutputStreamto write to a file.static Options<Threshold>Options. ENTITY_MEMORY_THRESHOLDAn option for the threshold of theEntityOutputStream.Methods in org.jboss.resteasy.spi.config that return Threshold Modifier and Type Method Description static ThresholdThreshold. of(long size, SizeUnit unit)Creates a new threshold.static ThresholdThreshold. valueOf(String value)Parses the given string representation of a threshold.
-