The availability of features may depend on your plan type. Contact your Customer Success Manager if you have any questions.
Dev guideRecipesAPI ReferenceChangelog
Dev guideAPI ReferenceRecipesChangelogUser GuideGitHubDev CommunityOptimizely AcademySubmit a ticketLog In
Dev guide

Forced Decision methods for the Swift SDK

Describes the Forced Decision methods for the Swift SDK, which you can use to force users into a specific variation in Optimizely Feature Experimentation.

These methods help test and debug various flows of your client applications by forcing users into a specific variation.

The Swift SDK checks forced decisions before making any decisions. If a matching item is found for the requested flag, the Swift SDK returns the forced decision immediately (audience conditions and traffic allocations are ignored) before making normal decisions.

The Swift SDK checks for forced decisions at the start of each decision process. If a matching forced decision is found, it returns the decision immediately.

  • Flag-to-Decision – The SDK checks at the start of any decide call for the given flag.

  • Experiment-Rule-to-Decision – The SDK checks at the start of the decision for the given experiment rule of the flag key.

  • Delivery-Rule-to-Decision – The SDK checks at the start of the decision for the given delivery rule of the flag key.

❗️

Warning

You must associate your variations to a flag rule before calling any Forced Decision methods.

On forced decisions, the SDK fires impression events and notifications just like other normal decisions (unless disabled by the disableDecisionEvent option).

📘

Note

These forced decisions are not persistent and are cleared when the OptimizelyUserContext is re-initialized.

For information about each method, click on the method name.

OptimizelyDecisionContext

public struct OptimizelyDecisionContext {
   public let flagKey: String
   public let ruleKey: String?
}

OptimizelyForcedDecision

public struct OptimizelyForcedDecision {
   public let variationKey: String
}

Set forced decision method - setForcedDecision()

Version

3.10.0

Description

Sets a forced decision (variationKey) for a given OptimizelyDecisionContext.

Parameters

This table lists the required and optional parameters for the Swift SDK.

Parameter

Type

Description

context required

Struct

An instance of OptimizelyDecisionContext with the required flagKey and optional ruleKey for the forced decision you want to set.

decision
required

Struct

An instance of OptimizelyForcedDecision with the required variationKey for the forced decision you want to set.

Returns

A boolean value that indicates if setting the forced decision (variationKey) was completed.

Example

See the full Swift SDK example here.

Get forced decision method - getForcedDecision()

Version

3.10.0

Description

Returns the forced decision (variationKey) for a given OptimizelyDecisionContext. Returns the OptimizelyForcedDecision instance or nil if there is no matching item.

Parameters

This table lists the required and optional parameters for the Swift SDK.

Parameter

Type

Description

context required

struct

An instance of OptimizelyDecisionContext with the required flagKey and optional ruleKey for the forced decision you want to get.

Returns

A forced decision OptimizelyForcedDecision instance for the context or nil if there is no matching item.

Example

See the full Swift SDK example here.

Remove forced decision method - removeForcedDecision()

Version

3.10.0

Description

Removes the forced decision (variationKey) for a given OptimizelyDecisionContext.

Parameters

This table lists the required and optional parameters for the Swift SDK.

Parameters

Type

Description

context required

struct

An instance of OptimizelyDecisionContext with the required flagKey and optional ruleKey for the forced decision you want to remove.

Returns

A success/failure boolean status if the forced decision (variationKey) was removed.

Example

See the full Swift SDK example here.

Remove all forced decisions method - removeAllForcedDecisions()

Version

3.10.0

Description

Removes all forced decisions (variationKey) for the user context.

Parameters

This table lists the required and optional parameters for the Swift SDK.

ParametersTypeDescription
NoneN/AN/A

Returns

A success/failure boolean status.

Example

See the full Swift SDK example here.

Full Code Example

let optimizely = OptimizelyClient(sdkKey: “sdk-key”)
optimizely.start(datafile: datafile)
let user = optimizely.createUserContext(userId: “test-user”, attributes: attributes)

let flagContext = OptimizelyDecisionContext(flagKey: "flag-1")
let flagAndABTestContext = OptimizelyDecisionContext(flagKey: "flag-1", ruleKey: "ab-test-1")
let flagAndDeliveryRuleContext = OptimizelyDecisionContext(flagKey: "flag-1", ruleKey: "delivery-1")
let variationAForcedDecision = OptimizelyForcedDecision(variationKey: "variation-a")
let variationBForcedDecision = OptimizelyForcedDecision(variationKey: "variation-b")
let variationOnForcedDecision = OptimizelyForcedDecision(variationKey: "on")
        
// set a forced decision for a flag
var success = user.setForcedDecision(context: flagContext, decision: variationAForcedDecision)
decision = user.decide(key: "flag-1")

// set a forced decision for an ab-test rule
success = user.setForcedDecision(context: flagAndABTestContext, decision: variationBForcedDecision)
decision = user.decide(key: "flag-1")

// set a forced variation for a delivery rule
success = user.setForcedDecision(context: flagAndDeliveryRuleContext, decision: variationOnForcedDecision)
decision = user.decide(key: "flag-1")

// get forced variations
let forcedDecision = user.getForcedDecision(context: flagContext)
print("[ForcedDecision] variationKey = \(forcedDecision!.variationKey)")

// remove forced variations
success = user.removeForcedDecision(context: flagAndABTestContext)
success = user.removeAllForcedDecisions()

See Also

OptimizelyUserContext

Source files

The language/platform source files containing the implementation for Swift is OptimizelyClient.swift.