Uses of Class
io.ipinfo.api.IPinfo.BatchReqOpts.Builder
Packages that use IPinfo.BatchReqOpts.Builder
-
Uses of IPinfo.BatchReqOpts.Builder in io.ipinfo.api
Methods in io.ipinfo.api that return IPinfo.BatchReqOpts.BuilderModifier and TypeMethodDescriptionIPinfo.BatchReqOpts.Builder.setBatchSize(int batchSize) batchSize is the internal batch size used per API request; the IPinfo API has a maximum batch size, but the batch request functions available in this library do not.IPinfo.BatchReqOpts.Builder.setFilter(boolean filter) filter, if turned on, will filter out a URL whose value was deemed empty on the server.IPinfo.BatchReqOpts.Builder.setTimeoutPerBatch(int timeoutPerBatch) timeoutPerBatch is the timeout in seconds that each batch of size `BatchSize` will have for its own request. 0 means to use a default of 5 seconds; any negative number will turn it off; turning it off does _not_ disable the effects of `timeoutTotal`.IPinfo.BatchReqOpts.Builder.setTimeoutTotal(int timeoutTotal) timeoutTotal is the total timeout in seconds for all batch requests in a batch request function to complete. 0 means no total timeout; `timeoutPerBatch` will still apply.