OptimizelyUserContext for the Swift SDK
Describes the OptimizelyUserContext object for the Swift SDK, which lets you make flag decisions and track events for a user context in Optimizely Feature Experimentation.
The OptimizelyUserContext
object lets you make flag decisions and track events for a user context you have already created using the Create User Context method.
Also, if you have Real-Time Segments for Feature Experimentation, you can evaluate if your user qualifies for an audience segment.
OptimizelyUserContext minimum SDK version
SDK version 3.7 and higher.
Forced decision methods minimum SDK version
setForcedDecision()
, getForcedDecision()
, removeForcedDecision()
and removeAllForcedDecisions()
methods are supported on SDK version 3.10.0 and higher.
Real-Time Segments for Feature Experimentation minimum SDK version
fetchQualifiedSegments()
and isQualifiedFor()
methods are supported on version 4.0.0 and higher.
OptimizelyUserContext definition
The following code shows the object definition for OptimizelyUserContext
:
public class OptimizelyUserContext {
public var userId: String
public var attributes: [String: Any?]
public init(optimizely: OptimizelyClient,
userId: String,
attributes: [String: Any]? = nil)
// set an attribute for the user
public func setAttribute(key: String, value: Any) -> Bool
// make a decision about which flag variation the user buckets into for the flag key
public func decide(key: String,
options: [OptimizelyDecideOption]? = nil) -> OptimizelyDecision
// make decisions about which flag variations the user buckets into for flag keys
public func decide(keys: [String],
options: [OptimizelyDecideOption]? = nil) -> [String: OptimizelyDecision]
// make decisions about which flag variations the user buckets into for all flags
public func decideAll(options: [OptimizelyDecideOption]? = nil) -> [String: OptimizelyDecision]
// track user event
public func trackEvent(eventKey: String, eventTags: [String: Any]? = nil)
// OptimizelyDecisionContext
public struct OptimizelyDecisionContext {
public let flagKey: String
public let ruleKey: String?
}
// OptimizelyForcedDecision
public struct OptimizelyForcedDecision {
public let variationKey:String
}
// sets a forced decision (variationKey) for a given decision context (flagKey and optional ruleKey)
public func setForcedDecision(context: OptimizelyDecisionContext,
decision: OptimizelyForcedDecision) -> Bool
// returns the forced decision (variationKey) for a given decision context (flagKey and optional ruleKey)
public func getForcedDecision(context: OptimizelyDecisionContext) -> OptimizelyForcedDecision?
// removes the forced decision (variationKey) for a given decision context (flagKey and optional ruleKey)
public func removeForcedDecision(context: OptimizelyDecisionContext) -> Bool
// removes all the forced decisions (variationKeys) for the user context
public func removeAllForcedDecisions() -> Bool
//
// The following methods require Real-Time Segments for Feature Experimentation.
// See note below code sample.
//
// An array of segment names that the user is qualified for.
// The result of **fetchQualifiedSegments()** will be saved here.
// Can be nil if not properly updated with fetchQualifiedSegments().
//
// You can read and write directly to the qualified segments array.
// This allows for bypassing the remote fetching process from ODP
// or for utilizing your own fetching service.
public var qualifiedSegments: [String]?
// Fetch all qualified segments for the user context.
//
// The segments fetched will be saved in **qualifiedSegments** and can be accessed any time.
// On failure, **qualifiedSegments** will be nil and one of these errors will be returned:
// - OptimizelyError.invalidSegmentIdentifier
// - OptimizelyError.fetchSegmentsFailed(String)
//
// - Parameters:
// - options: A set of options for fetching qualified segments (optional).
// - completionHandler: A completion handler to be called with the fetch result.
// On success, it will pass a non-nil segments array (can be empty) with a nil error.
// On failure, it will pass a non-nil error with a nil segments array.
public func fetchQualifiedSegments(options: [OptimizelySegmentOption] = [],
completionHandler: @escaping ([String]?, OptimizelyError?) -> Void)
// Check is the user qualified for the given segment.
// - Parameter segment: the segment name to check qualification for.
// - Returns: true if qualified.
public func isQualifiedFor(segment: String) -> Bool
}
Note
You must configure Real-Time Segments for Feature Experimentation to access the
qualifiedSegments
variable and thefetchQualifiedSegments()
andisQualifiedFor()
methods.
Properties
The following table shows attributes for the OptimizelyUserContext
object:
Attribute | Type | Comment |
---|---|---|
userId | String | The ID of the user |
attributes | Map | A map of custom key-value pairs specifying attributes for the user that are used for audience targeting. You can pass the map with the user ID when you create the user. |
Methods
The following table shows methods for the OptimizelyUserContext
object:
Method | Comment |
---|---|
setAttribute | Pass a custom user attribute as a key-value pair to the user context. |
decide | Returns a decision result for a flag key for a user in an OptimizelyDecision object containing all data required to deliver the flag rule.See Decide methods. |
decide for specified keys | Returns a map of flag decisions for specified flag keys. See Decide methods. |
decideAll | Returns decisions for all active (unarchived) flags for a user. See Decide methods. |
trackEvent | Tracks a conversion event for a user (an action a user takes) and logs an error message if the specified event key does not match any existing events. See Track Event. |
setForcedDecision | Forces a user into a specific variation. See Set Forced Decision |
getForcedDecision | Returns what variation the user was forced into. See Get Forced Decision. |
removeForcedDecision | Removes a user from a specific forced variation. See Remove Forced Decision. |
removeAllForcedDecisions | Removes a user from all forced variations. See Remove All Forced Decisions. |
fetchQualifiedSegments ** | Fetch all Optimizely Data Platform (ODP) real-time segments that the user context qualified for. See Real-Time Segments for Feature Experimentation segment qualification methods. |
isQualifiedFor ** | Check if the user context qualified for a given ODP real-time segment. See Real-Time Segments for Feature Experimentation segment qualification methods. |
** Requires Real-Time Segments for Feature Experimentation.
See also
Source files
The language and platform source files containing the implementation for Swift are available on GitHub.
Updated 7 months ago