@@ -64,22 +64,28 @@ public final class SdkClientOption<T> extends ClientOption<T> {
64
64
public static final SdkClientOption <RetryStrategy > RETRY_STRATEGY = new SdkClientOption <>(RetryStrategy .class );
65
65
66
66
/**
67
- * The internal retry strategy set by the customer. This is likely only useful within configuration
68
- * classes, and will be converted into a {@link #RETRY_STRATEGY} for the SDK's runtime.
67
+ * The retry strategy set by the customer using {@link ClientOverrideConfiguration.Builder#retryStrategy(RetryStrategy)}. This
68
+ * is likely only useful within configuration classes, and will be converted into a {@link #RETRY_STRATEGY} for the SDK's
69
+ * runtime.
70
+ *
69
71
* @see ClientOverrideConfiguration#retryMode()
70
72
*/
71
73
public static final SdkClientOption <RetryStrategy > CONFIGURED_RETRY_STRATEGY = new SdkClientOption <>(RetryStrategy .class );
72
74
73
75
/**
74
- * The internal retry mode set by the customer. This is likely only useful within configuration
75
- * classes, and will be converted into a {@link #RETRY_STRATEGY} for the SDK's runtime.
76
+ * The retry mode set by the customer using {@link ClientOverrideConfiguration.Builder#retryStrategy(RetryMode)}. This is
77
+ * likely only useful within configuration classes, and will be converted into a {@link #RETRY_STRATEGY} for the SDK's
78
+ * runtime.
79
+ *
76
80
* @see ClientOverrideConfiguration#retryMode()
77
81
*/
78
82
public static final SdkClientOption <RetryMode > CONFIGURED_RETRY_MODE = new SdkClientOption <>(RetryMode .class );
79
83
80
84
/**
81
- * The internal consumer to configure the default retry strategy set by the customer. This is likely only useful within
82
- * configuration classes, and will be converted into a {@link #RETRY_STRATEGY} for the SDK's runtime.
85
+ * The retry strategy builder consumer set by the customer using
86
+ * {@link ClientOverrideConfiguration.Builder#retryStrategy(Consumer<RetryStrategy.Builder>)}. This is likely only useful
87
+ * within configuration classes, and will be converted into a {@link #RETRY_STRATEGY} for the SDK's runtime.
88
+ *
83
89
* @see ClientOverrideConfiguration#retryStrategy()
84
90
*/
85
91
public static final SdkClientOption <Consumer <RetryStrategy .Builder <?, ?>>> CONFIGURED_RETRY_CONFIGURATOR =
0 commit comments