-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a way to configure ACK_RANDOM_FACTOR for retransmission. #48
Comments
There is release v6.12.0 that contains implementation for this ticket, can we close it? |
I tested it and it works, but I have to admit that I didn't look into it enough when I ask for it at #27 (comment) : Because, I was thinking that : coapServerBuilder.retransmission(RetransmissionBackOff.ofExponential(Duration.ofMillis(200), 4, 1)); will send re-transmission each 200 ms (linear) but it is rather 200ms, then 400ms, then 800ms (exponential)... So to be clearer :
So we can close this issue 🙂 Some feedback/questions not really related to this :
(maybe both question deserve their own issue?) |
There has to be some timeout, it could be big one if needed.
Yes, I am aware of that. When needed, we can switch to be more strict with API changes.
Yes :) |
Currently we can only set
ACK_TIMEOUT
andMAX_RETRANSMIT
but notACK_RANDOM_FACTOR
.This issue was triggered by : #27 (comment)
The text was updated successfully, but these errors were encountered: