Uses of Interface
kong.unirest.core.ProgressMonitor
-
Packages that use ProgressMonitor Package Description kong.unirest.core kong.unirest.core.java -
-
Uses of ProgressMonitor in kong.unirest.core
Fields in kong.unirest.core declared as ProgressMonitor Modifier and Type Field Description private ProgressMonitor
BaseRequest. downloadMonitor
private ProgressMonitor
MonitoringInputStream. downloadMonitor
private ProgressMonitor
HttpRequestMultiPart. monitor
private ProgressMonitor
HttpRequestUniBody. monitor
Methods in kong.unirest.core that return ProgressMonitor Modifier and Type Method Description default ProgressMonitor
Body. getMonitor()
ProgressMonitor
HttpRequestMultiPart. getMonitor()
ProgressMonitor
HttpRequestUniBody. getMonitor()
Methods in kong.unirest.core with parameters of type ProgressMonitor Modifier and Type Method Description R
BaseRequest. downloadMonitor(ProgressMonitor monitor)
R
HttpRequest. downloadMonitor(ProgressMonitor monitor)
sets a download monitor for monitoring the response.private java.io.InputStream
FileResponse. getContent(RawResponse r, ProgressMonitor downloadMonitor, java.nio.file.Path target)
MultipartBody
HttpRequestMultiPart. uploadMonitor(ProgressMonitor uploadMonitor)
RequestBodyEntity
HttpRequestUniBody. uploadMonitor(ProgressMonitor progressMonitor)
MultipartBody
MultipartBody. uploadMonitor(ProgressMonitor monitor)
Set a file Progress upload monitor suitable for drawing progress bars and whatnot.RequestBodyEntity
RequestBodyEntity. uploadMonitor(ProgressMonitor monitor)
Set a Progress upload monitor suitable for drawing progress bars and whatnot.Constructors in kong.unirest.core with parameters of type ProgressMonitor Constructor Description ByteResponse(RawResponse r, ProgressMonitor downloadMonitor)
FileResponse(RawResponse r, java.lang.String path, ProgressMonitor downloadMonitor, java.nio.file.CopyOption... copyOptions)
MonitoringInputStream(java.io.InputStream content, ProgressMonitor downloadMonitor, java.lang.String fileName, RawResponse rawResponse)
MonitoringInputStream(java.io.InputStream content, ProgressMonitor downloadMonitor, java.nio.file.Path target, RawResponse rawResponse)
-
Uses of ProgressMonitor in kong.unirest.core.java
Fields in kong.unirest.core.java declared as ProgressMonitor Modifier and Type Field Description private ProgressMonitor
MonitoringInputStream. monitor
private ProgressMonitor
MultipartBodyPublisher. monitor
private ProgressMonitor
MultipartSubscription. monitor
private ProgressMonitor
PartSubscriber. monitor
Methods in kong.unirest.core.java with parameters of type ProgressMonitor Modifier and Type Method Description (package private) MultipartBodyPublisher
MultipartBodyPublisher.Builder. build(ProgressMonitor monitor)
Creates and returns a newMultipartBodyPublisher
with a snapshot of the added parts.Constructors in kong.unirest.core.java with parameters of type ProgressMonitor Constructor Description MonitoringInputStream(java.io.InputStream value, ProgressMonitor monitor)
MultipartBodyPublisher(java.util.List<Part> parts, ProgressMonitor monitor)
MultipartSubscription(java.lang.String boundary, java.util.List<Part> parts, ProgressMonitor monitor, java.util.concurrent.Flow.Subscriber<? super java.nio.ByteBuffer> downstream)
PartSubscriber(MultipartSubscription downstream, Part part, ProgressMonitor monitor)
-