Skip to content

Commit 7e8623d

Browse files
committed
Add parameters to comments for initialize
1 parent 8135d14 commit 7e8623d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

packages/dart/lib/parse_server_sdk.dart

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,16 @@ class Parse {
101101
/// debug: true,
102102
/// liveQuery: true);
103103
/// ```
104+
///
105+
/// Parameters:
106+
///
107+
/// * [restRetryIntervals] - Optional list of retry delay intervals (in milliseconds)
108+
/// for read operations (GET, DELETE). Defaults to [0, 250, 500, 1000, 2000].
109+
/// * [restRetryIntervalsForWrites] - Optional list of retry delay intervals for
110+
/// write operations (POST, PUT). Defaults to [] (no retries) to prevent duplicate
111+
/// data creation. Configure only if you have idempotency guarantees in place.
112+
/// * [liveListRetryIntervals] - Optional list of retry delay intervals for
113+
/// LiveQuery operations.
104114
Future<Parse> initialize(
105115
String appId,
106116
String serverUrl, {

0 commit comments

Comments
 (0)