Skip to content

Commit 564b020

Browse files
committed
Add documentation to rust retry strategies
1 parent 7ee4ee8 commit 564b020

File tree

2 files changed

+15
-9
lines changed

2 files changed

+15
-9
lines changed

ios/MullvadREST/RetryStrategy/RetryStrategy.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ extension REST {
2222
self.applyJitter = applyJitter
2323
}
2424

25-
/// The return value of this function *must* be passed to a Rust FFI funciton that will consume it, otherwise it will leak.
25+
/// The return value of this function *must* be passed to a Rust FFI function that will consume it, otherwise it will leak.
2626
public func toRustStrategy() -> SwiftRetryStrategy {
2727
switch delay {
2828
case .never:

mullvad-ios/src/api_client/retry_strategy.rs

+14-8
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,9 @@ impl RetryStrategy {
2828
let delays: Box<dyn Iterator<Item = Duration> + Send> = match delays {
2929
RetryDelay::Never => Box::new(std::iter::empty()),
3030
RetryDelay::Constant(constant_delays) => Box::new(constant_delays.take(max_retries)),
31-
RetryDelay::Exponential(exponential_delays) => Box::new(
32-
exponential_delays
33-
.take(max_retries)
34-
),
31+
RetryDelay::Exponential(exponential_delays) => {
32+
Box::new(exponential_delays.take(max_retries))
33+
}
3534
};
3635

3736
Jittered::jitter(delays)
@@ -45,6 +44,8 @@ pub enum RetryDelay {
4544
Exponential(ExponentialBackoff),
4645
}
4746

47+
/// Creates a retry strategy that never retries after failure.
48+
/// The result needs to be consumed.
4849
#[no_mangle]
4950
pub unsafe extern "C" fn mullvad_api_retry_strategy_never() -> SwiftRetryStrategy {
5051
let retry_strategy = RetryStrategy {
@@ -56,6 +57,8 @@ pub unsafe extern "C" fn mullvad_api_retry_strategy_never() -> SwiftRetryStrateg
5657
return SwiftRetryStrategy(ptr);
5758
}
5859

60+
/// Creates a retry strategy that retries `max_retries` times with a constant delay of `delay_sec`.
61+
/// The result needs to be consumed.
5962
#[no_mangle]
6063
pub unsafe extern "C" fn mullvad_api_retry_strategy_constant(
6164
max_retries: usize,
@@ -71,17 +74,20 @@ pub unsafe extern "C" fn mullvad_api_retry_strategy_constant(
7174
return SwiftRetryStrategy(ptr);
7275
}
7376

77+
/// Creates a retry strategy that retries `max_retries` times with a exponantially increating delay.
78+
/// The delay will never exceed `max_delay_sec`
79+
/// The result needs to be consumed.
7480
#[no_mangle]
7581
pub unsafe extern "C" fn mullvad_api_retry_strategy_exponential(
7682
max_retries: usize,
77-
initial_seconds: u64,
83+
initial_sec: u64,
7884
factor: u32,
79-
max_delay: u64,
85+
max_delay_sec: u64,
8086
) -> SwiftRetryStrategy {
81-
let initial_delay = Duration::from_secs(initial_seconds);
87+
let initial_delay = Duration::from_secs(initial_sec);
8288

8389
let backoff = ExponentialBackoff::new(initial_delay, factor)
84-
.max_delay(Some(Duration::from_secs(max_delay)));
90+
.max_delay(Some(Duration::from_secs(max_delay_sec)));
8591

8692
let retry_strategy = RetryStrategy {
8793
delays: RetryDelay::Exponential(backoff),

0 commit comments

Comments
 (0)