FlippingExecutionContextBuilder
A DSL builder for constructing FlippingExecutionContext instances.
Provides a type-safe, expressive way to define context parameters using Kotlin DSL syntax.
Example usage:
val ctx = context {
ContextKeys.USER_ID to "user-123"
ContextKeys.REGION to "EU"
this["tier"] = "premium"
}Content copied to clipboard
See also
Functions
Link copied to clipboard
Builds and returns the FlippingExecutionContext with all configured parameters.