elad2109

Results 10 comments of elad2109

I use these libraries ``` import org.apache.http.client.config.RequestConfig; import org.apache.http.client.methods.CloseableHttpResponse; import org.apache.http.client.methods.HttpGet; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.impl.client.HttpClients; import org.apache.http.impl.conn.PoolingHttpClientConnectionManager; import org.apache.http.util.EntityUtils; ``` and this is my code: ``` connectionManager = new PoolingHttpClientConnectionManager();...

can you help with a code snipet? I'm not sure the code that calls the backoff mechanism can read the falg indicating a request was successful only after a retry?

I have a list of requests. I want to flag each response with "succeeded"(status 200) , "failed", "succeeded after retry"

I get an error: for `implements RetryListener {` > Error:(15, 48) java: type com.github.rholder.retry.RetryListener does not take parameters

why are these atomic? ``` private final AtomicBoolean succeeded = new AtomicBoolean(); private final AtomicBoolean retried = new AtomicBoolean(); ``` I mean, should I create new listener to each request?...

what does this mean `retry.getNumerOfAttampts() == 1` ? 1) The first try ever has been done? e.g. http send and returned Or 2) These has been a retry after the...

Thanks, would still love to have a built-in feature.

> Now that we have customizable hot keys this is actually much easier to add. We can bind it to dedicated keys. You mean "We can bind it" - as...

I followed the instructions but when running `ng serve` I get this error: node_modules/ng-multiselect-dropdown/click-outside.directive.d.ts:9:18 - error TS2707: Generic type 'ɵɵDirectiveDeclaration' requires between 6 and 8 type arguments. ![image](https://github.com/NileshPatel17/ng-multiselect-dropdown/assets/1093841/93f03e3a-de09-4e77-959d-f38cf7d0f9e7)