Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -656,16 +656,17 @@ private Task<Void> setDefaultsWithStringsMapAsync(Map<String, String> defaultsSt
* Asynchronously changes the custom signals for this {@link FirebaseRemoteConfig} instance.
*
* <p>Custom signals are subject to limits on the size of key/value pairs and the total
* number of signals. Any calls that exceed these limits will be discarded.
* number of signals. Any calls that exceed these limits will be discarded. See <a
* href="https://firebase.google.com/docs/remote-config/parameters?template_type=client#custom-signal-limits">Custom
* Signal Limits</a>.
*
* @param customSignals The custom signals to set for this instance.
* <ol>
* <ul>
* <li>New keys will add new key-value pairs in the custom signals.
* <li>Existing keys with new values will update the corresponding signals.
* <li>Setting a key's value to {@code null} will remove the associated signal.
* </ol>
* </ul>
*/
// TODO(b/385028620): Add link to documentation about custom signal limits.
@NonNull
public Task<Void> setCustomSignals(@NonNull CustomSignals customSignals) {
return Tasks.call(
Expand Down
Loading