8000 [FSSDK-10762] Implement UPS request batching for decideForKeys by raju-opti · Pull Request #549 · optimizely/java-sdk · GitHub
[go: up one dir, main page]

Skip to content

[FSSDK-10762] Implement UPS request batching for decideForKeys #549

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 24 commits into from
Oct 22, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
static
  • Loading branch information
raju-opti committed Oct 21, 2024
commit a1cc6085a8ca52566c5ec738a7bf20411a16108a
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ private UserProfile getUserProfile(String userId, DecisionReasons reasons) {
return userProfile;
}

class UserProfileTracker {
static class UserProfileTracker {
public UserProfile userProfile;
public boolean profileUpdated;

Expand Down Expand Up @@ -261,12 +261,12 @@ void updateUserProfile(@Nonnull Experiment experiment,
}

/**
* Get the variation the user is bucketed into for the FeatureFlag
* Get the variations the user is bucketed into for the the list of feature flags
*
* @param featureFlags The feature flag list the user wants to access.
* @param user The current OptimizelyuserContext
* @param projectConfig The current projectConfig
* @param options An array of decision options
* @param user The current OptimizelyuserContext
* @param projectConfig The current projectConfig
* @param options An array of decision options
* @return A {@link DecisionResponse} including a {@link FeatureDecision} and the decision reasons
*/
@Nonnull
Expand Down
Loading
0