I work a lot with proxies and multiple threads. Currently, the only to use proxies is to set the proxy using FuelManager.instance.proxy but this is not for multiple proxies and multiple threads.
The best way is to set the proxy for each requests.
Like this: "https://google.com".sendGet().setProxy("AProxy")`
new FuelManager()
.also { |it| it.proxy = ... }
.get("https://google.com")
.responseXXX
Something like this?
Yes exactly
Most helpful comment
Yes exactly