@@ -29,23 +29,23 @@ LD_EXPORT(LDServerConfigBuilder) LDServerConfigBuilder_New(char const* sdk_key);
29
29
30
30
/**
31
31
* Sets a custom URL for the polling service.
32
- * @param b Client config builder. Must not be NULL.
32
+ * @param b Server config builder. Must not be NULL.
33
33
* @param url Target URL. Must not be NULL.
34
34
*/
35
35
LD_EXPORT (void )
36
36
LDServerConfigBuilder_ServiceEndpoints_PollingBaseURL (LDServerConfigBuilder b ,
37
37
char const * url );
38
38
/**
39
39
* Sets a custom URL for the streaming service.
40
- * @param b Client config builder. Must not be NULL.
40
+ * @param b Server config builder. Must not be NULL.
41
41
* @param url Target URL. Must not be NULL.
42
42
*/
43
43
LD_EXPORT (void )
44
44
LDServerConfigBuilder_ServiceEndpoints_StreamingBaseURL (LDServerConfigBuilder b ,
45
45
char const * url );
46
46
/**
47
47
* Sets a custom URL for the events service.
48
- * @param b Client config builder. Must not be NULL.
48
+ * @param b Server config builder. Must not be NULL.
49
49
* @param url Target URL. Must not be NULL.
50
50
*/
51
51
LD_EXPORT (void )
@@ -54,7 +54,7 @@ LDServerConfigBuilder_ServiceEndpoints_EventsBaseURL(LDServerConfigBuilder b,
54
54
/**
55
55
* Sets a custom URL for a Relay Proxy instance. The streaming,
56
56
* polling, and events URLs are set automatically.
57
- * @param b Client config builder. Must not be NULL.
57
+ * @param b Server config builder. Must not be NULL.
58
58
* @param url Target URL. Must not be NULL.
59
59
*/
60
60
LD_EXPORT (void )
@@ -64,7 +64,7 @@ LDServerConfigBuilder_ServiceEndpoints_RelayProxyBaseURL(
64
64
65
65
/**
66
66
* Sets an identifier for the application.
67
- * @param b Client config builder. Must not be NULL.
67
+ * @param b Server config builder. Must not be NULL.
68
68
* @param app_id Non-empty string. Must be <= 64 chars. Must be alphanumeric,
69
69
* '-', '.', or '_'. Must not be NULL.
70
70
*/
@@ -74,7 +74,7 @@ LDServerConfigBuilder_AppInfo_Identifier(LDServerConfigBuilder b,
74
74
75
75
/**
76
76
* Sets a version for the application.
77
- * @param b Client config builder. Must not be NULL.
77
+ * @param b Server config builder. Must not be NULL.
78
78
* @param app_version Non-empty string. Must be <= 64 chars. Must be
79
79
* alphanumeric,
80
80
* '-', '.', or '_'. Must not be NULL.
@@ -86,7 +86,7 @@ LDServerConfigBuilder_AppInfo_Version(LDServerConfigBuilder b,
86
86
/**
87
87
* Enables or disables "Offline" mode. True means
88
88
* Offline mode is enabled.
89
- * @param b Client config builder. Must not be NULL.
89
+ * @param b Server config builder. Must not be NULL.
90
90
* @param offline True if offline.
91
91
*/
92
92
LD_EXPORT (void )
@@ -95,7 +95,7 @@ LDServerConfigBuilder_Offline(LDServerConfigBuilder b, bool offline);
95
95
/**
96
96
* Specify if event-sending should be enabled or not. By default,
97
97
* events are enabled.
98
- * @param b Client config builder. Must not be NULL.
98
+ * @param b Server config builder. Must not be NULL.
99
99
* @param enabled True to enable event-sending.
100
100
*/
101
101
LD_EXPORT (void )
@@ -105,7 +105,7 @@ LDServerConfigBuilder_Events_Enabled(LDServerConfigBuilder b, bool enabled);
105
105
* Sets the capacity of the event processor. When more events are generated
106
106
* within the processor's flush interval than this value, events will be
107
107
* dropped.
108
- * @param b Client config builder. Must not be NULL.
108
+ * @param b Server config builder. Must not be NULL.
109
109
* @param capacity Event queue capacity.
110
110
*/
111
111
LD_EXPORT (void )
@@ -115,7 +115,7 @@ LDServerConfigBuilder_Events_Capacity(LDServerConfigBuilder b, size_t capacity);
115
115
* Sets the flush interval of the event processor. The processor queues
116
116
* outgoing events based on the capacity parameter; these events are then
117
117
* delivered based on the flush interval.
118
- * @param b Client config builder. Must not be NULL.
118
+ * @param b Server config builder. Must not be NULL.
119
119
* @param milliseconds Interval between automatic flushes.
120
120
*/
121
121
LD_EXPORT (void )
@@ -141,7 +141,7 @@ LDServerConfigBuilder_Events_FlushIntervalMs(LDServerConfigBuilder b,
141
141
* necessary to call either of these methods, as the default behavior is to
142
142
* treat all attributes as non-private unless otherwise specified.
143
143
*
144
- * @param b Client config builder. Must not be NULL.
144
+ * @param b Server config builder. Must not be NULL.
145
145
* @param all_attributes_private True for behavior of (1), false for default
146
146
* behavior of (2) or (3).
147
147
*/
@@ -152,7 +152,7 @@ LDServerConfigBuilder_Events_AllAttributesPrivate(LDServerConfigBuilder b,
152
152
/**
153
153
* Specifies a single private attribute. May be called multiple times
154
154
* with additional private attributes.
155
- * @param b Client config builder. Must not be NULL.
155
+ * @param b Server config builder. Must not be NULL.
156
156
* @param attribute_reference Attribute to mark private.
157
157
*/
158
158
LD_EXPORT (void )
@@ -166,7 +166,7 @@ LDServerConfigBuilder_Events_PrivateAttribute(LDServerConfigBuilder b,
166
166
* builder indicates the data source will use streaming. Setting a polling
167
167
* builder will indicate the use of polling.
168
168
*
169
- * @param b Client config builder. Must not be NULL.
169
+ * @param b Server config builder. Must not be NULL.
170
170
* @param stream_builder The streaming builder. The builder is consumed; do not
171
171
* free it.
172
172
*/
@@ -182,7 +182,7 @@ LDServerConfigBuilder_DataSource_MethodStream(
182
182
* builder indicates the data source will use streaming. Setting a polling
183
183
* builder will indicate the use of polling.
184
184
*
185
- * @param b Client config builder. Must not be NULL.
185
+ * @param b Server config builder. Must not be NULL.
186
186
* @param poll_builder The polling builder. The builder is consumed; do not free
187
187
* it.
188
188
*/
@@ -261,7 +261,7 @@ LDServerDataSourcePollBuilder_Free(LDServerDataSourcePollBuilder b);
261
261
* This should be used for wrapper SDKs to set the wrapper name.
262
262
*
263
263
* Wrapper information will be included in request headers.
264
- * @param b Client config builder. Must not be NULL.
264
+ * @param b Server config builder. Must not be NULL.
265
265
* @param wrapper_name Name of the wrapper.
266
266
*/
267
267
LD_EXPORT (void )
@@ -272,7 +272,7 @@ LDServerConfigBuilder_HttpProperties_WrapperName(LDServerConfigBuilder b,
272
272
* This should be used for wrapper SDKs to set the wrapper version.
273
273
*
274
274
* Wrapper information will be included in request headers.
275
- * @param b Client config builder. Must not be NULL.
275
+ * @param b Server config builder. Must not be NULL.
276
276
* @param wrapper_version Version of the wrapper.
277
277
*/
278
278
LD_EXPORT (void )
@@ -284,7 +284,7 @@ LDServerConfigBuilder_HttpProperties_WrapperVersion(
284
284
* Set a custom header value. May be called more than once with additional
285
285
* headers.
286
286
*
287
- * @param b Client config builder. Must not be NULL.
287
+ * @param b Server config builder. Must not be NULL.
288
288
* @param key Name of the header. Must not be NULL.
289
289
* @param value Value of the header. Must not be NULL.
290
290
*/
@@ -295,14 +295,14 @@ LDServerConfigBuilder_HttpProperties_Header(LDServerConfigBuilder b,
295
295
296
296
/**
297
297
* Disables the default SDK logging.
298
- * @param b Client config builder. Must not be NULL.
298
+ * @param b Server config builder. Must not be NULL.
299
299
*/
300
300
LD_EXPORT (void )
301
301
LDServerConfigBuilder_Logging_Disable (LDServerConfigBuilder b );
302
302
303
303
/**
304
304
* Configures the SDK with basic logging.
305
- * @param b Client config builder. Must not be NULL.
305
+ * @param b Server config builder. Must not be NULL.
306
306
* @param basic_builder The basic logging builder. Must not be NULL.
307
307
*/
308
308
LD_EXPORT (void )
@@ -311,7 +311,7 @@ LDServerConfigBuilder_Logging_Basic(LDServerConfigBuilder b,
311
311
312
312
/**
313
313
* Configures the SDK with custom logging.
314
- * @param b Client config builder. Must not be NULL.
314
+ * @param b Server config builder. Must not be NULL.
315
315
* @param custom_builder The custom logging builder. Must not be NULL.
316
316
*/
317
317
LD_EXPORT (void )
0 commit comments